Skip to content

Commit 8314623

Browse files
authored
fix missing GroupWork.h warning (#9)
1 parent a1bb0d3 commit 8314623

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

GroupWork.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "GroupWork"
3-
s.version = "0.0.4"
3+
s.version = "0.0.5"
44
s.summary = "Swift module that helps with running multiple, concurrent, asynchronous tasks in a clean way."
55
s.description = "Swift module that helps with running multiple, concurrent, asynchronous tasks in a clean way. Better description inc."
66
s.homepage = "https://github.com/quanvo87/GroupWork"
@@ -9,5 +9,5 @@ Pod::Spec.new do |s|
99
"Wilson Ding" => "hello@wilsonding.com" }
1010
s.platform = :ios, "8.0"
1111
s.source = { :git => "https://github.com/quanvo87/GroupWork.git", :tag => s.version }
12-
s.source_files = "Sources/GroupWork/*.swift"
12+
s.source_files = "Sources/GroupWork/*.{h,m,swift}"
1313
end

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ github "quanvo87/GroupWork"
5050
For [SPM](https://swift.org/package-manager/), add to your package dependencies:
5151

5252
```
53-
.package(url: "https://github.com/quanvo87/GroupWork.git", .upToNextMinor(from: "0.0.0")),
53+
.package(url: "https://github.com/quanvo87/GroupWork.git", .upToNextMinor(from: "0.0.0"))
5454
```
5555

5656
#### Manually
@@ -128,7 +128,7 @@ Now you can create a `GroupWork`, and call `work.simpleFuncA()` on it like in th
128128

129129
notes:
130130
- `start()` must be called before an asynchronous task
131-
- `finish()` must be called in the completion handler of an asynchronous
131+
- `finish()` must be called in the completion handler of an asynchronous task
132132
- `start()` and `finish()` calls must be balanced
133133

134134
## Working Example

0 commit comments

Comments
 (0)