-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
67 lines (57 loc) · 1.63 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
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '9.0'
project 'SortonsEvents'
def common_pods
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
pod 'AlamofireImage', :git => 'https://github.com/Alamofire/AlamofireImage.git'
pod 'AlamofireObjectMapper', :git => 'https://github.com/tristanhimmelman/AlamofireObjectMapper'
pod 'ObjectMapper', :git => 'https://github.com/Hearst-DD/ObjectMapper.git'
pod 'Fabric'
pod 'Crashlytics'
pod 'ReachabilitySwift', '~> 3'
pod 'DZNEmptyDataSet'
# Mofified and added to project
# pod 'SLPagingViewSwift-Swift3', :git => 'https://github.com/davidseek/SLPagingViewSwift-Swift-3-Tinder-Twitter.git'
end
target 'FOMO DCU' do
common_pods
end
target 'FOMO DIT' do
common_pods
end
target 'FOMO NUIG' do
common_pods
end
target 'FOMO NUIM' do
common_pods
end
target 'FOMO QUB' do
common_pods
end
target 'FOMO TCD' do
common_pods
end
target 'FOMO UCC' do
common_pods
end
target 'FOMO UCD' do
common_pods
end
target 'FOMO UL' do
common_pods
end
# Figure out which are really needed in the test classes – get @import testable working
target 'SortonsEventsTests' do
common_pods
pod 'Mockingjay', :git => 'https://github.com/kylef/Mockingjay.git'
# pod 'Quick', :git => 'https://github.com/Quick/Quick.git'
# pod 'Nimble', :git => 'https://github.com/Quick/Nimble.git'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end