-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathPodfile
More file actions
43 lines (37 loc) · 806 Bytes
/
Podfile
File metadata and controls
43 lines (37 loc) · 806 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
# Uncomment this line to define a global platform for your project
# platform :ios, '6.0'
use_frameworks!
inhibit_all_warnings!
target 'FunctionalMarvel' do
pod 'RxAlamofire'
pod 'Argo'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'Curry'
pod 'Runes'
pod 'SDWebImage'
end
target 'FunctionalMarvelTests' do
pod 'Quick'
pod 'Nimble'
pod 'RxAlamofire'
pod 'Argo'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'RxTests'
pod 'Curry'
pod 'Runes'
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