Skip to content

Commit 7d0fd22

Browse files
committed
Update CocoaPods items
1 parent 502d352 commit 7d0fd22

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ before_install:
1111

1212
install:
1313
- carthage bootstrap --use-submodules --no-build
14-
# - pod repo update --silent
14+
- pod repo update --silent
1515

1616
script:
17-
# - pod lib lint
17+
- pod lib lint
1818
- set -o pipefail
1919
- xcodebuild test -workspace APIKit.xcworkspace -scheme APIKit | xcpretty -c
2020
- xcodebuild test -workspace APIKit.xcworkspace -scheme APIKit -sdk iphonesimulator -destination 'name=iPhone 6,OS=9.1' | xcpretty -c

APIKit.podspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "APIKit"
3-
s.version = "1.2.1"
3+
s.version = "2.0.0-beta.2"
44
s.summary = "A networking library for building type safe web API client in Swift."
55
s.homepage = "https://github.com/ishkawa/APIKit"
66

@@ -9,15 +9,15 @@ Pod::Spec.new do |s|
99
}
1010

1111
s.ios.deployment_target = "8.0"
12-
s.osx.deployment_target = "10.9"
12+
s.osx.deployment_target = "10.10"
1313
if s.respond_to?(:watchos)
1414
s.watchos.deployment_target = "2.0"
1515
end
1616
if s.respond_to?(:tvos)
1717
s.tvos.deployment_target = "9.0"
1818
end
1919

20-
s.source_files = "Sources/*.swift"
20+
s.source_files = "Sources/**/*.swift"
2121
s.source = {
2222
:git => "https://github.com/ishkawa/APIKit.git",
2323
:tag => "#{s.version}",
@@ -26,7 +26,7 @@ Pod::Spec.new do |s|
2626
s.license = {
2727
:type => "MIT",
2828
:text => <<-LICENSE
29-
Copyright (c) 2015 Yosuke Ishikawa
29+
Copyright (c) 2015 - 2016 Yosuke Ishikawa
3030
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3131
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3232
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ Session.sendRequest(request) { result in
3131

3232
#### [Carthage](https://github.com/Carthage/Carthage)
3333

34-
- Insert `github "ishkawa/APIKit" ~> 1.2.1` to your Cartfile.
34+
- Insert `github "ishkawa/APIKit" ~> 2.0.0` to your Cartfile.
3535
- Run `carthage update`.
3636
- Link your app with `APIKit.framework` and `Result.framework` in `Carthage/Checkouts`.
3737

3838
#### [CocoaPods](https://github.com/cocoapods/cocoapods)
3939

40-
- Insert `pod 'APIKit', '~> 1.2.1'` to your Podfile.
40+
- Insert `pod 'APIKit', '~> 2.0.0'` to your Podfile.
4141
- Run `pod install`.
4242

4343
## Documentation

0 commit comments

Comments
 (0)