-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
44 lines (25 loc) · 769 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
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
inhibit_all_warnings!
def pods
# UI
pod 'Texture/Core', '~> 2.8'
# Reactive
pod 'ReactiveSwifty', '~> 1.0'
# Linting
pod 'SwiftLint', '~> 0.28'
end
target 'ReactivePixel-iOS' do
platform :ios, '9.0'
pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.new_shell_script_build_phase.shell_script = "mkdir -p $PODS_CONFIGURATION_BUILD_DIR/#{target.name}"
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
config.build_settings['ENABLE_TESTABILITY'] = 'YES'
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
end
end
end