Skip to content

Commit

Permalink
Merge pull request #56 from k-enomoto/master
Browse files Browse the repository at this point in the history
Fix error on pod install
  • Loading branch information
devxoul committed Dec 20, 2017
2 parents 4257c86 + e2c4cfb commit 3802878
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Examples/Counter/Podfile
Expand Up @@ -4,6 +4,6 @@ target 'Counter' do
use_frameworks!

pod 'ReactorKit', :path => '../../'
pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift.git', :branch => 'rxswift4.0-swift4.0'
pod 'RxCocoa', :git => 'https://github.com/ReactiveX/RxSwift.git', :branch => 'rxswift4.0-swift4.0'
pod 'RxSwift', '~> 4.0.0'
pod 'RxCocoa', '~> 4.0.0'
end
4 changes: 2 additions & 2 deletions Examples/GitHubSearch/Podfile
Expand Up @@ -4,6 +4,6 @@ target 'GitHubSearch' do
use_frameworks!

pod 'ReactorKit', :path => '../../'
pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift.git', :branch => 'rxswift4.0-swift4.0'
pod 'RxCocoa', :git => 'https://github.com/ReactiveX/RxSwift.git', :branch => 'rxswift4.0-swift4.0'
pod 'RxSwift', '~> 4.0.0'
pod 'RxCocoa', '~> 4.0.0'
end

0 comments on commit 3802878

Please sign in to comment.