forked from OneBusAway/onebusaway-iphone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
49 lines (40 loc) · 1.12 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
platform :ios, '9.3'
def pod_promise_kit
pod 'PromiseKit/CorePromise', '3.5.1'
pod 'PromiseKit/CoreLocation', '3.5.1'
pod 'PromiseKit/CloudKit', '3.5.1'
pod 'PromiseKit/Foundation', '3.5.1'
pod 'PromiseKit/MapKit', '3.5.1'
end
target 'OBAKit' do
use_frameworks!
pod_promise_kit
end
target 'OneBusAway' do
use_frameworks!
# Pods for OneBusAway
pod 'GoogleAnalytics', '3.16.0'
pod 'libextobjc', '0.4.1'
pod 'SVProgressHUD', '2.0.3'
pod 'Masonry', '1.0.1'
pod 'DateTools', '1.7.0'
pod 'DZNEmptyDataSet', '1.8.1'
pod 'apptentive-ios', '3.2.1'
pod 'Pulley', '1.0.0'
# pod 'SwiftMessages', '1.1.3'
pod 'SwiftMessages', git: 'https://github.com/SwiftKickMobile/SwiftMessages.git', :branch => 'swift2.3'
pod 'SMFloatingLabelTextField', '0.2.0'
pod_promise_kit
target 'OneBusAwayTests' do
inherit! :search_paths
# Pods for testing
pod 'OCMock', '3.3.1'
end
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
end