-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·45 lines (34 loc) · 875 Bytes
/
Podfile
File metadata and controls
executable file
·45 lines (34 loc) · 875 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
source 'https://cdn.cocoapods.org/'
use_frameworks!
inhibit_all_warnings!
def shared
pod 'RxSwift', '~> 5.0'
pod 'RxCocoa', '~> 5.0'
pod 'RxDataSources', '~> 4.0'
pod 'RxOptional', '~> 4.0'
pod 'SnapKit', '~> 5.0'
pod 'Kingfisher', '~> 5.0'
end
target 'Reactant' do
platform :ios, '10.0'
shared
end
target 'ReactantTests' do
platform :ios, '10.0'
shared
pod 'Quick', '~> 2.0'
pod 'Nimble', '~> 7.0'
pod 'Cuckoo', :git => 'https://github.com/Brightify/Cuckoo.git', :branch => 'master'
pod 'RxNimble'
pod 'RxTest'
end
target 'ReactantPrototyping' do
platform :ios, '10.0'
shared
pod 'Reactant', :subspecs => ['All-iOS'], :path => './'
end
target 'TVPrototyping' do
platform :tvos, '10.0'
shared
pod 'Reactant', :subspecs => ['All-tvOS', 'FallbackSafeAreaInsets'], :path => './'
end