-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
34 lines (26 loc) · 889 Bytes
/
Podfile
File metadata and controls
34 lines (26 loc) · 889 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
# Uncomment the next line to define a global platform for your project
platform :ios, '8.0'
# ignore all warnings from all pods
inhibit_all_warnings!
target 'RxToBolts' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for RxToBolts
pod 'RxSwift', '~> 4.0'
pod 'Bolts', '~> 1.9.0'
target 'RxToBoltsTests' do
inherit! :search_paths
# Pods for testing
pod 'Quick', '~> 1.2'
pod 'Nimble', '~> 7.0'
end
end
post_install do |installer|
puts 'Removing static analyzer support for pods'
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['OTHER_CFLAGS'] = "$(inherited) -Qunused-arguments -Xanalyzer -analyzer-disable-all-checks"
config.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
end
end
end