forked from artsy/eidolon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
76 lines (63 loc) · 1.97 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
68
69
70
71
72
73
74
75
76
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/artsy/Specs.git'
plugin 'cocoapods-keys', {
:project => "Eidolon",
:target => "Kiosk",
:keys => [
"ArtsyAPIClientSecret",
"ArtsyAPIClientKey",
"HockeyProductionSecret",
"HockeyBetaSecret",
"MixpanelProductionAPIClientKey",
"MixpanelStagingAPIClientKey",
"CardflightAPIClientKey",
"CardflightMerchantAccountToken",
"CardflightMerchantAccountStagingToken",
"BalancedMarketplaceToken",
"BalancedMarketplaceStagingToken"
]
}
platform :ios, '8.0'
use_frameworks!
# Yep.
inhibit_all_warnings!
# Artsy stuff
pod 'Artsy+UIColors'
pod 'Artsy+UILabels'
pod 'Artsy-UIButtons'
if ENV['USER'] == "orta" || ENV['USER'] == "ash" || ENV['USER'] == "artsy" || ENV['USER'] == "Laura" || ENV['CI'] == "true"
pod 'Artsy+UIFonts', '~> 1.1.0'
else
pod 'Artsy+OSSUIFonts', '~> 1.1.0'
end
pod 'ORStackView'
pod 'FLKAutoLayout'
pod 'ISO8601DateFormatter', '0.7'
pod 'ARCollectionViewMasonryLayout', '~> 2.0.0'
pod 'SDWebImage', '~> 3.7'
pod 'SVProgressHUD', :git => 'https://github.com/ashfurrow/SVProgressHUD.git'
pod 'HockeySDK'
pod 'ARAnalytics/Mixpanel'
pod 'ARAnalytics/HockeyApp'
pod 'CardFlight'
pod 'ECPhoneNumberFormatter'
pod 'UIImageViewAligned', :git => "https://github.com/ashfurrow/UIImageViewAligned.git"
pod 'DZNWebViewController', :git => "https://github.com/orta/DZNWebViewController.git"
pod 'Reachability', :git => "https://github.com/ashfurrow/Reachability.git", :branch => "frameworks"
pod 'UIView+BooleanAnimations'
pod 'ARTiledImageView', :git => "https://github.com/ashfurrow/ARTiledImageView.git"
pod 'balanced-ios', :git => "https://github.com/orta/balanced-ios", :branch => "0_5_podspec"
pod 'XNGMarkdownParser'
# swift pods
pod 'SwiftyJSON'
pod 'Alamofire'
pod 'ReactiveCocoa', '3.0.0-alpha.1'
pod 'RACAlertAction'
pod 'Moya/Reactive'
pod 'Swift-RAC-Macros'
target "KioskTests" do
pod 'FBSnapshotTestCase'
pod 'Nimble-Snapshots'
pod 'Quick'
pod 'Nimble'
end