This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 355
/
Podfile
84 lines (70 loc) · 1.92 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
77
78
79
80
81
82
83
84
source 'https://github.com/artsy/Specs.git'
source 'https://cdn.cocoapods.org/'
plugin 'cocoapods-keys', {
:project => 'Eidolon',
:keys => [
'ArtsyAPIClientSecret',
'ArtsyAPIClientKey',
'HockeyProductionSecret',
'HockeyBetaSecret',
'SegmentWriteKey',
'CardflightProductionAPIClientKey',
'CardflightProductionMerchantAccountToken',
'StripeProductionPublishableKey',
'CardflightStagingAPIClientKey',
'CardflightStagingMerchantAccountToken',
'StripeStagingPublishableKey'
]
}
platform :ios, '10.0'
use_frameworks!
# Yep.
inhibit_all_warnings!
target 'Kiosk' do
# Artsy stuff
pod 'Artsy+UIColors'
pod 'Artsy+UILabels'
pod 'Artsy-UIButtons'
if ENV['ARTSY_STAFF_MEMBER'] != nil || ENV['CI'] != nil
pod 'Artsy+UIFonts'
else
pod 'Artsy+OSSUIFonts'
end
pod 'ORStackView', '2.0'
pod 'FLKAutoLayout', '0.1.1'
pod 'ARCollectionViewMasonryLayout', '~> 2.0.0'
pod 'SDWebImage', '~> 3.7'
pod 'SVProgressHUD'
# Required as a workaround for https://github.com/bitstadium/HockeySDK-iOS/pull/421
pod 'HockeySDK-Source', git: 'https://github.com/bitstadium/HockeySDK-iOS.git'
pod 'ARAnalytics/Segmentio'
pod 'ARAnalytics/HockeyApp'
pod 'CardFlight-v4'
pod 'Stripe', '14.0.1'
pod 'ECPhoneNumberFormatter'
pod 'UIImageViewAligned', :git => 'https://github.com/ashfurrow/UIImageViewAligned.git'
pod 'DZNWebViewController', :git => 'https://github.com/orta/DZNWebViewController.git'
pod 'ReachabilitySwift'
pod 'UIView+BooleanAnimations'
pod 'ARTiledImageView'
pod 'XNGMarkdownParser'
pod 'ISO8601DateFormatter'
# Swift pods
pod 'SwiftyJSON'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxOptional'
pod 'Moya/RxSwift'
pod 'NSObject+Rx'
pod 'Action'
target 'KioskTests' do
inherit! :search_paths
pod 'FBSnapshotTestCase'
pod 'Nimble-Snapshots'
pod 'Quick'
pod 'Nimble'
pod 'RxNimble'
pod 'Forgeries'
pod 'RxBlocking'
end
end