-
Notifications
You must be signed in to change notification settings - Fork 35
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 #38 from vadymmarkov/refactor/remove-rx
Refactor: remove RxSwift as dependency
- Loading branch information
Showing
18 changed files
with
48 additions
and
693 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
github "Quick/Nimble" "v7.0.1" | ||
github "Quick/Quick" "v1.1.0" | ||
github "ReactiveX/RxSwift" "3.6.1" | ||
github "Quick/Nimble" "v7.3.1" | ||
github "Quick/Quick" "v1.3.2" |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,7 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "When" | ||
s.summary = "A lightweight implementation of Promises in Swift" | ||
s.version = "3.0.3" | ||
s.version = "3.1.0" | ||
s.homepage = "https://github.com/vadymmarkov/When" | ||
s.license = 'MIT' | ||
s.author = { "Vadym Markov" => "[email protected]" } | ||
|
@@ -16,16 +16,6 @@ Pod::Spec.new do |s| | |
s.tvos.deployment_target = '9.2' | ||
|
||
s.requires_arc = true | ||
s.default_subspec = "Core" | ||
|
||
s.subspec "Core" do |ss| | ||
ss.source_files = "Sources/When/**/*" | ||
ss.framework = "Foundation" | ||
end | ||
|
||
s.subspec "RxSwift" do |ss| | ||
ss.source_files = "Sources/RxWhen/**/*" | ||
ss.dependency "When/Core" | ||
ss.dependency "RxSwift", "4.0.0-beta.0" | ||
end | ||
ss.source_files = "Sources/**/*" | ||
ss.framework = "Foundation" | ||
end |
Oops, something went wrong.