forked from crushlovely/Amaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
68 lines (52 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
# Crush Utility Belt
pod 'Sidecar'
# Logging & Analytics
pod 'CocoaLumberjack', '~> 1.9.0'
pod 'CrashlyticsFramework'
pod 'CrashlyticsLumberjack', '~>1.0.0'
# Networking
pod 'AFNetworking'
# Various goodies
pod 'libextobjc' # Useful macros and some craziness
pod 'FormatterKit' # For all your string formatting needs
pod 'Asterism' # Nice & fast collection operations
# You may want...
#pod 'PromiseKit' # Promises/A+-alike
#pod 'Mantle' # Github's model framework
#pod 'SSKeychain' # Go-to keychain wrapper
#pod 'DateTools' # Datetime heavy lifting
#pod 'PixateFreestyle' # Style your app with CSS
#pod 'Masonry' # Convenient autolayout DSL
# Update checker for Installr (installrapp.com)
#pod 'Aperitif', :configurations => ['Debug_Staging', 'Debug_Production', 'AdHoc_Staging', 'AdHoc_Production']
# Reveal app view debugger
pod 'Reveal-iOS-SDK', :configurations => ['Debug_Staging', 'Debug_Production']
# Testing necessities
target 'Specs', :exclusive => true do
pod 'Specta'
pod 'Expecta'
pod 'OCMockito'
# pod 'OHHTTPStubs'
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 'CrushBootstrap',
'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 and settings plists over to our project
post_install do |installer|
require 'fileutils'
acknowledgements_plist = 'Pods/Target Support Files/Pods/Pods-Acknowledgements.plist'
if Dir.exists?('CrushBootstrap/Resources/Settings.bundle') && File.exists?(acknowledgements_plist)
FileUtils.cp(acknowledgements_plist, 'CrushBootstrap/Resources/Settings.bundle/Acknowledgements.plist')
end
environment_file = 'Pods/Target Support Files/Pods/Pods-environment.h'
if File.exists?(environment_file)
FileUtils.cp(environment_file, 'CrushBootstrap/Other-Sources/Pods-Environment.h')
end
end