-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
executable file
·59 lines (49 loc) · 1.46 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.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', '<= 3.2.0'
# Then API - initialization
pod 'Then'
# Realm database
pod 'RealmSwift', '<= 2.10.0'
# async images
pod 'SDWebImage', '~> 3.8'
# Color utilities
pod 'BSColorUtils', :git => 'https://github.com/SlayterDev/BSColorUtils'
# UITextView Syntax Highlighting
pod 'Highlightr', :git => 'https://github.com/raspu/Highlightr.git'
# Event based actions
pod 'WaitForIt'
pod 'LUAutocompleteView'
pod 'GCDWebServer', '~> 3.0'
pod 'SwiftyStoreKit'
pod 'BulletinBoard'
pod 'SwiftKeychainWrapper'
pod 'Fabric'
pod 'Crashlytics'
# Facebook crap
pod 'FacebookCore'
project ‘SafePlanet.xcodeproj'
end
post_install do |installer|
# Your list of targets here.
myTargets = ['Highlightr', 'SnapKit']
installer.pods_project.targets.each do |target|
if myTargets.include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.2'
end
end
end
end
target 'RadiumBrowser' do
all_pods
end