-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·37 lines (27 loc) · 1000 Bytes
/
Podfile
File metadata and controls
executable file
·37 lines (27 loc) · 1000 Bytes
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
source 'https://github.com/CocoaPods/Specs'
platform :ios, '8.0'
# Add Application pods here
pod 'AFNetworking', '2.3.1'
pod 'MagicalRecord', :git => 'https://github.com/magicalpanda/MagicalRecord.git', :branch => 'develop'
pod 'MBProgressHUD', '~> 0.8'
pod 'MGSwipeTableCell', :head
pod 'SpinKit', '~> 1.0.1'
pod 'libextobjc', '~> 0.4.1'
pod 'ColorArt', '~> 0.1'
target :unit_tests, :exclusive => true do
link_with 'UnitTests'
pod 'Specta'
pod 'Expecta'
pod 'OCMock'
pod 'OHHTTPStubs'
end
# Copy acknowledgements to the Settings.bundle
post_install do | installer |
require 'fileutils'
pods_acknowledgements_path = 'Pods/Target Support Files/Pods/Pods-Acknowledgements.plist'
settings_bundle_path = Dir.glob("**/*Settings.bundle*").first
if File.file?(pods_acknowledgements_path)
puts 'Copying acknowledgements to Settings.bundle'
FileUtils.cp_r(pods_acknowledgements_path, "#{settings_bundle_path}/Acknowledgements.plist", :remove_destination => true)
end
end