-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
30 lines (25 loc) · 856 Bytes
/
Copy pathPodfile
File metadata and controls
30 lines (25 loc) · 856 Bytes
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
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
def common_pods
pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift.git'
# , :branch => 'develop'
pod 'RxCocoa', :git => 'https://github.com/ReactiveX/RxSwift.git'
# , :branch => 'develop'
end
target 'SplitTimer' do
common_pods
pod 'SwiftLint'
end
target 'SplitTimerTests' do
inherit! :search_paths
common_pods
pod 'RxBlocking', :git => 'https://github.com/ReactiveX/RxSwift.git'
# , :branch => 'develop'
pod 'RxTest', :git => 'https://github.com/ReactiveX/RxSwift.git'
# , :branch => 'develop'
pod 'Nimble', :git => 'https://github.com/Quick/Nimble.git'
# , :branch => '7.x-branch'
pod 'Quick', :git => 'https://github.com/Quick/Quick.git'
# , :branch => '1.x-branch'
end