-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
23 lines (20 loc) · 840 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
use_frameworks!
target 'IMeditated' do
pod 'RxSwift', :git => '[email protected]:ReactiveX/RxSwift.git'
pod 'RxCocoa', :git => '[email protected]:ReactiveX/RxSwift.git'
pod 'Result', :git => '[email protected]:antitypical/Result.git'
end
# RxTests and RxBlocking make the most sense in the context of unit/integration tests
target 'IMeditatedTests' do
pod 'RxSwift', :git => '[email protected]:ReactiveX/RxSwift.git'
pod 'RxCocoa', :git => '[email protected]:ReactiveX/RxSwift.git'
pod 'RxBlocking', :git => '[email protected]:ReactiveX/RxSwift.git'
pod 'RxTests', :git => '[email protected]:ReactiveX/RxSwift.git'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |configuration|
configuration.build_settings['SWIFT_VERSION'] = "3.0"
end
end
end