-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
64 lines (48 loc) · 1.93 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
platform :ios, '7.0'
#The power of AVPlayer with the simplicity of MPMusicPlayerController
pod 'GVMusicPlayerController'
# Crush Utility Belt
pod 'Sidecar'
# Update checker for Installr (installrapp.com)
pod 'Aperitif'
# Logging & Analytics
pod 'CocoaLumberjack'
pod 'CrashlyticsFramework'
pod 'CrashlyticsLumberjack'
# Networking
pod 'AFNetworking'
# Various goodies
pod 'libextobjc' # Useful macros and some craziness
pod 'PixateFreestyle' # Style your app with CSS
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
# 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 'BoMuPo',
'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'
if Dir.exists?('BoMuPo/Resources/Settings.bundle') && File.exists?('Pods/Pods-Acknowledgements.plist')
FileUtils.cp_r('Pods/Pods-Acknowledgements.plist', 'BoMuPo/Resources/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end
if File.exists?('Pods/Pods-Environment.h')
FileUtils.cp_r('Pods/Pods-Environment.h', 'BoMuPo/Other-Sources/Pods-Environment.h', :remove_destination => true)
end
end