forked from Moya/Moya
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Moya#1993 from Moya/development
Merging development into master.
- Loading branch information
Showing
70 changed files
with
1,417 additions
and
766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
github "Alamofire/Alamofire" ~> 4.1 | ||
github "ReactiveCocoa/ReactiveSwift" ~> 5.0 | ||
github "ReactiveX/RxSwift" ~> 4.0 | ||
github "antitypical/Result" ~> 4.1 | ||
github "Alamofire/Alamofire" ~> 5.0 | ||
github "ReactiveCocoa/ReactiveSwift" ~> 6.0 | ||
github "ReactiveX/RxSwift" ~> 5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
github "AliSoftware/OHHTTPStubs" ~> 7.0.0 | ||
github "AliSoftware/OHHTTPStubs" ~> 9.0.0 | ||
github "Quick/Quick" ~> 2.0.0 | ||
github "Quick/Nimble" ~> 8.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
github "Alamofire/Alamofire" "4.8.2" | ||
github "AliSoftware/OHHTTPStubs" "7.0.0" | ||
github "Quick/Nimble" "v8.0.1" | ||
github "Quick/Quick" "v2.0.0" | ||
github "ReactiveCocoa/ReactiveSwift" "5.0.0" | ||
github "ReactiveX/RxSwift" "4.4.2" | ||
github "antitypical/Result" "4.1.0" | ||
github "Alamofire/Alamofire" "5.0.0" | ||
github "AliSoftware/OHHTTPStubs" "9.0.0" | ||
github "Quick/Nimble" "v8.0.5" | ||
github "Quick/Quick" "v2.2.0" | ||
github "ReactiveCocoa/ReactiveSwift" "6.2.0" | ||
github "ReactiveX/RxSwift" "5.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Moya" | ||
s.version = "13.0.1" | ||
s.version = "14.0.0" | ||
s.summary = "Network abstraction layer written in Swift" | ||
s.description = <<-EOS | ||
Moya abstracts network commands using Swift Generics to provide developers | ||
|
@@ -13,9 +13,9 @@ Pod::Spec.new do |s| | |
s.license = { :type => "MIT", :file => "License.md" } | ||
s.author = { "Ash Furrow" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/ashfurrow" | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.10' | ||
s.tvos.deployment_target = '9.0' | ||
s.ios.deployment_target = '10.0' | ||
s.osx.deployment_target = '10.12' | ||
s.tvos.deployment_target = '10.0' | ||
s.watchos.deployment_target = '3.0' | ||
s.source = { :git => "https://github.com/Moya/Moya.git", :tag => s.version } | ||
s.default_subspec = "Core" | ||
|
@@ -24,20 +24,19 @@ Pod::Spec.new do |s| | |
|
||
s.subspec "Core" do |ss| | ||
ss.source_files = "Sources/Moya/", "Sources/Moya/Plugins/" | ||
ss.dependency "Alamofire", "~> 4.1" | ||
ss.dependency "Result", "~> 4.1" | ||
ss.dependency "Alamofire", "~> 5.0" | ||
ss.framework = "Foundation" | ||
end | ||
|
||
s.subspec "ReactiveSwift" do |ss| | ||
ss.source_files = "Sources/ReactiveMoya/" | ||
ss.dependency "Moya/Core" | ||
ss.dependency "ReactiveSwift", "~> 5.0" | ||
ss.dependency "ReactiveSwift", "~> 6.0" | ||
end | ||
|
||
s.subspec "RxSwift" do |ss| | ||
ss.source_files = "Sources/RxMoya/" | ||
ss.dependency "Moya/Core" | ||
ss.dependency "RxSwift", "~> 4.0" | ||
ss.dependency "RxSwift", "~> 5.0" | ||
end | ||
end |
Oops, something went wrong.