forked from artsy/eigen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
114 lines (97 loc) · 3.44 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
source 'https://github.com/artsy/Specs.git'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
# Yep.
inhibit_all_warnings!
# Allows per-dev overrides
local_podfile = "Podfile.local"
eval(File.open(local_podfile).read) if File.exist? local_podfile
plugin 'cocoapods-keys', {
:project => "Artsy",
:target => "Artsy",
:keys => [
"ArtsyAPIClientSecret",
"ArtsyAPIClientKey",
"HockeyProductionSecret",
"HockeyBetaSecret",
"MixpanelProductionAPIClientKey",
"MixpanelStagingAPIClientKey",
"MixpanelDevAPIClientKey",
"MixpanelInStoreAPIClientKey",
"ArtsyFacebookAppID",
"ArtsyTwitterKey",
"ArtsyTwitterSecret",
"ArtsyTwitterStagingKey",
"ArtsyTwitterStagingSecret"
]
}
# Core
pod 'Mantle', '1.5.3'
pod 'AFNetworking', '1.3.4'
pod 'AFHTTPRequestOperationLogger', '1.0.0'
pod 'SDWebImage', '3.7.1'
pod 'JLRoutes', '1.5'
pod 'ISO8601DateFormatter', '0.7'
pod 'KSDeferred', '0.2.0'
pod 'JSDecoupledAppDelegate', '1.0.1'
pod 'CocoaLumberjack', '1.8.1'
pod 'FXBlurView', '1.6.1'
pod 'MMMarkdown', '0.3'
pod 'UIAlertView+Blocks', '0.8'
pod 'iRate', '1.10.2'
pod 'MultiDelegate', '0.0.2'
pod 'ReactiveCocoa', '2.3'
pod 'ALPValidator', '0.0.3'
pod 'ORKeyboardReactingApplication', '0.5.3'
pod 'ORStackView', :head
pod 'ARTiledImageView', :git => 'https://github.com/dblock/ARTiledImageView', :commit => '1a31b864d1d56b1aaed0816c10bb55cf2e078bb8'
pod 'ARCollectionViewMasonryLayout', :git => 'https://github.com/ashfurrow/ARCollectionViewMasonryLayout', :commit => '2ee871f509806af147d0529a36f791906997d4b7'
pod 'ARGenericTableViewController', '1.0.2'
pod 'FLKAutoLayout', '0.1.1'
# Artsy Spec repo stuff
pod 'Artsy+UILabels', '1.3.1'
pod 'Artsy+UIColors'
pod 'Artsy-UIButtons', :head
pod 'UIView+BooleanAnimations'
if ENV['USER'] == "orta" || ENV['USER'] == "ash" || ENV['USER'] == "artsy" || ENV['USER'] == "laura" || ENV['CI'] == "true"
pod 'Artsy+UIFonts'
else
pod 'Artsy+OSSUIFonts'
end
# Auth
pod 'Facebook-iOS-SDK', '3.14.1'
pod 'AFOAuth1Client', '0.3.3'
# Language niceities
pod 'ObjectiveSugar', '1.1.0'
# libextobjc
pod 'libextobjc/EXTKeyPathCoding', '0.4'
pod 'libextobjc/EXTScope', '0.4'
# Martsy
pod 'TSMiniWebBrowser@dblock', :head
# Table View simplification
pod 'FODFormKit', :git => 'https://github.com/1aurabrown/FODFormKit.git'
# Analytics
pod 'HockeySDK', '3.5.0'
pod 'Mixpanel', '2.3.1'
# TODO(AF): Once ARAnalytics is updated, bump this.
pod 'ARAnalytics/Mixpanel', :git => 'https://github.com/orta/ARAnalytics', :commit => '6f1a1c314894437e7e5c09572c276e644dbfb64b'
pod 'ARAnalytics/HockeyApp', :git => 'https://github.com/orta/ARAnalytics', :commit => '6f1a1c314894437e7e5c09572c276e644dbfb64b'
pod 'ARAnalytics/DSL', :git => 'https://github.com/orta/ARAnalytics', :commit => '6f1a1c314894437e7e5c09572c276e644dbfb64b'
pod 'UICKeyChainStore', '1.0.5'
# Fairs
pod 'NAMapKit', :git => 'https://github.com/neilang/NAMapKit', :commit => '62275386978db91b0e7ed8de755d15cef3e793b4'
# Developer Pods
pod 'VCRURLConnection', '0.2.0'
pod 'DHCShakeNotifier', '0.2.0'
# Easter Eggs
pod 'ARASCIISwizzle', '1.1.0'
pod 'DRKonamiCode', '1.1.0'
target 'Artsy Tests', :exclusive => true do
pod 'FBSnapshotTestCase', '1.4'
pod 'Expecta+Snapshots', '~> 1.2'
pod 'OHHTTPStubs', '3.1.2'
pod 'XCTest+OHHTTPStubSuiteCleanUp', '1.0.0'
pod 'Specta', :git => 'https://github.com/specta/specta.git', :tag => "v0.3.0.beta1"
pod 'Expecta', '0.3.0'
pod 'OCMock', '2.2.4'
end