-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
31 lines (29 loc) · 867 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use_frameworks!
target 'CycleMonitor' do
platform :macos, 10.11
pod 'Cycle', '~> 0.0.17'
pod 'RxSwift', '~> 4.3.0'
pod 'RxCocoa', git: 'https://github.com/ReactiveX/RxSwift', branch: 'master'
pod 'Argo', '~> 4.0'
pod 'Curry', '~> 4.0'
pod 'RxSwiftExt'
target 'CycleMonitorTests' do
inherit! :search_paths
end
end
target 'Integer Mutation' do
platform :ios, 9.0
pod 'Cycle', '~> 0.0.17'
pod 'RxSwift', '~> 4.3.0'
pod 'RxCocoa', git: 'https://github.com/ReactiveX/RxSwift', branch: 'master'
pod 'Curry', '~> 4.0'
pod 'RxCoreMotion'
pod 'Argo', '~> 4.0'
pod 'Wrap', '~> 3.0'
pod 'RxSwiftExt'
pod 'RxUIApplicationDelegate', '~> 0.1.3'
target 'Integer Mutation Tests' do
inherit! :search_paths
pod 'RxTest'
end
end