From e2c4cfb228ba90c18806d228f590b71900f706a3 Mon Sep 17 00:00:00 2001 From: enomoto Date: Wed, 20 Dec 2017 13:55:38 +0900 Subject: [PATCH] Fix error on pod install --- Examples/Counter/Podfile | 4 ++-- Examples/GitHubSearch/Podfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Examples/Counter/Podfile b/Examples/Counter/Podfile index f2c91f7..622f275 100644 --- a/Examples/Counter/Podfile +++ b/Examples/Counter/Podfile @@ -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 diff --git a/Examples/GitHubSearch/Podfile b/Examples/GitHubSearch/Podfile index 9042d47..455e4f4 100644 --- a/Examples/GitHubSearch/Podfile +++ b/Examples/GitHubSearch/Podfile @@ -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