-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
42 lines (34 loc) · 1.36 KB
/
Podfile
File metadata and controls
42 lines (34 loc) · 1.36 KB
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
# Uncomment this line if you need Swift support:
# use_frameworks!
target 'Sema' do
# Networking
pod 'AFNetworking', '~> 2.5'
pod 'Mantle'
pod 'AUAccount', git: 'https://github.com/appunite/AUAccount.git', tag: '0.2.8'
pod 'FastCoding'
# Formatting
pod 'FormatterKit' # For all your string formatting needs
pod 'Toast', '~> 3.0'
# Progress hud
pod 'MBProgressHUD'
# Scroll
pod 'UIScrollView-InfiniteScroll'
end
# Inform CocoaPods that we use some custom build configurations
# Leave this in place unless you've tweaked the project's targets and configurations.
xcodeproj 'Sema',
'Debug_Staging' => :debug, 'Debug_Production' => :debug,
'Test_Staging' => :debug, 'Test_Production' => :debug,
'AdHoc_Staging' => :release, 'AdHoc_Production' => :release,
'Profile_Staging' => :release, 'Profile_Production' => :release,
'Distribution' => :release
# After every installation, copy the license settings plist over to our project
post_install do |installer|
require 'fileutils'
acknowledgements_plist = 'Pods/Target Support Files/Pods/Pods-Acknowledgements.plist'
if Dir.exists?('Sema/Resources/Settings.bundle') && File.exists?(acknowledgements_plist)
FileUtils.cp(acknowledgements_plist, 'Sema/Resources/Settings.bundle/Acknowledgements.plist')
end
end