-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
59 lines (51 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
# Uncomment the next line to define a global platform for your project
platform :ios, '8.0'
def main_pods
use_frameworks!
pod 'R.swift'
pod 'XCGLogger'
pod 'KeychainAccess'
pod 'APIKit'
pod 'Fabric'
pod 'Crashlytics'
pod 'SVProgressHUD'
pod 'DZNEmptyDataSet'
pod 'SDCAlertView'
pod 'SwiftyUserDefaults'
pod 'ObjectMapper'
pod 'FontAwesome.swift', :git => 'https://github.com/thii/FontAwesome.swift.git'
pod 'MGSwipeTableCell'
pod 'Toaster'
pod 'Kingfisher'
pod 'OAuthSwift'
pod 'XLActionController/Twitter'
pod 'PullToRefreshSwift'
pod 'NSDate+TimeAgo'
pod 'SwiftDate'
pod 'VTAcknowledgementsViewController'
pod 'SCLAlertView'
pod 'IQKeyboardManagerSwift'
end
target 'pi-chan2' do
main_pods
end
post_install do |installer|
# puts("Update debug pod settings to speed up build time")
# Dir.glob(File.join("Pods", "**", "Pods*{debug,Private}.xcconfig")).each do |file|
# File.open(file, 'a') { |f| f.puts "\nDEBUG_INFORMATION_FORMAT = dwarf" }
# end
# installer.pods_project.targets.each do |target|
# target.build_configurations.each do |config|
# config.build_settings['SWIFT_VERSION'] = '3.0'
# end
# end
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-pi-chan2/Pods-pi-chan2-acknowledgements.plist', 'pi-chan2/SupportingFiles/Acknowledgements.plist', :remove_destination => true)
end
plugin 'cocoapods-keys', {
:project => "pi-chan2",
:keys => [
"EsaClientId",
"EsaClientSecret"
]
}