-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
36 lines (28 loc) · 852 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
inhibit_all_warnings!
use_frameworks!
pre_install do |installer|
# workaround for https://github.com/CocoaPods/CocoaPods/issues/3289
def installer.verify_no_static_framework_transitive_dependencies; end
end
def all_pods
# See "Shared" folder for more shared libraries/resources
# AutoLayout
pod 'SnapKit'
# Then API - initialization
pod 'Then'
pod 'BSColorUtils', :git => 'https://github.com/SlayterDev/BSColorUtils'
pod 'RealmSwift'
project 'WindowManager.xcodeproj'
end
target 'WindowManager' do
all_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end