forked from sergdort/RxMarvel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
46 lines (38 loc) · 820 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
use_frameworks!
inhibit_all_warnings!
target 'FunctionalMarvel' do
pod 'Alamofire'
pod 'Argo'
pod 'Curry'
pod 'RxAlamofire'
pod 'RxSwift'
pod 'RxCocoa'
pod 'Runes'
pod 'SDWebImage'
pod 'TSMessages'
end
target 'FunctionalMarvelTests' do
pod 'Alamofire'
pod 'Argo'
pod 'Curry'
pod 'Nimble'
pod 'Quick'
pod 'RxAlamofire'
pod 'RxSwift'
pod 'RxCocoa'
pod 'Runes'
pod 'SDWebImage'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'RxSwift'
target.build_configurations.each do |config|
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] ||= ['-D', 'TRACE_RESOURCES']
end
end
end
end
end