forked from MIT-Mobile/MIT-Mobile-for-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
25 lines (20 loc) · 677 Bytes
/
Copy pathPodfile
File metadata and controls
25 lines (20 loc) · 677 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
inhibit_all_warnings!
pod 'SVPullToRefresh', '0.4.1'
pod 'RestKit', '0.24.0'
pod 'KissXML', '5.0'
pod 'SVProgressHud', '1.1.2'
pod 'SDWebImage', '3.7.1'
pod 'ECSlidingViewController', '2.0.3'
pod 'CocoaLumberjack', '1.8.0'
pod 'UIImage+PDF', '1.1.3'
#A workaround to the issue discussed here: http://stackoverflow.com/q/22328882/2611971
post_install do | installer |
installer.project.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
target 'MIT Mobile Tests', :exclusive => true do
pod 'KIF', '~> 3.0', :configurations => ['Debug']
end