-
Notifications
You must be signed in to change notification settings - Fork 45
/
Podfile
87 lines (69 loc) · 2.45 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
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/artsy/Specs.git'
platform :ios, '8.0'
# Yep.
inhibit_all_warnings!
plugin 'cocoapods-keys', {
:project => "Folio",
:target => "ArtsyFolio",
:keys => [
"ArtsyAPIClientSecret",
"ArtsyAPIClientKey",
"SegmentProduction",
"SegmentBeta",
"SegmentDev",
"SentryDSN"
]}
target 'ArtsyFolio' do
# Artsy
pod 'Artsy+UIColors'
pod 'UIView+BooleanAnimations'
pod 'ORStackView'
pod 'Artsy+Authentication', :subspecs => ["email"]
pod 'Artsy+UILabels'
pod 'Artsy+UIFonts'
# Nicities
pod 'ObjectiveSugar', :git => 'https://github.com/supermarin/ObjectiveSugar.git'
# Networking
pod 'Reachability', '~> 3.0'
pod 'AFNetworking', :git => "https://github.com/orta/AFNetworking", :branch => "no_ifdefs"
pod 'ISO8601DateFormatter', '~> 0.7'
# Misc
pod 'DRBOperationTree', '0.0.1'
pod 'SFHFKeychainUtils', '~> 0.0.1'
pod 'ZipArchive'
pod 'WYPopoverController', :git => 'https://github.com/orta/WYPopoverController.git', :branch => 'artsy'
pod 'JLRoutes'
# Templating
pod 'GHMarkdownParser'
pod 'GRMustache', '~> 7.0'
# Analytics
pod 'ARAnalytics', :subspecs => ['Segmentio'], :git => 'https://github.com/orta/ARAnalytics.git'
# Logging
pod 'CocoaLumberjack', '~> 1.0'
pod 'SSDataSources'
# @weakify / @strongify / @keypath
pod 'libextobjc/EXTKeyPathCoding', '~> 0.3'
pod 'libextobjc/EXTScope', '~> 0.3'
pod 'SDWebImage', '~> 3.0'
pod 'TPKeyboardAvoiding', :git => 'https://github.com/michaeltyson/TPKeyboardAvoiding.git'
pod 'ARTiledImageView', :git => 'https://github.com/dblock/ARTiledImageView.git'
pod 'ARCollectionViewMasonryLayout'
pod 'FLKAutoLayout', '0.1.1'
# This is not an Artsy project
pod 'ARGenericTableViewController', :git => 'https://github.com/orta/ARGenericTableViewController.git'
# For crash reporting
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '4.1.0'
target 'ArtsyFolio Tests' do
inherit! :search_paths
pod 'Specta'
pod 'Expecta'
pod 'OHHTTPStubs', '~> 3.0'
pod 'Expecta+Snapshots', "2.0.0"
pod 'Expecta+ContainerClasses', '~> 1.0'
pod 'Expecta+Comparison', '~> 0.1'
pod 'XCTest+OHHTTPStubSuiteCleanUp'
pod 'OCMock'
pod 'Forgeries/Mocks', :git => "https://github.com/ashfurrow/Forgeries.git"
end
end