forked from GitHawkApp/GitHawk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
77 lines (57 loc) · 2.07 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
# Uncomment the next line to define a global platform for your project
use_frameworks!
inhibit_all_warnings!
def session_pods
pod 'GitHubAPI', :path => 'Local Pods/GitHubAPI'
pod 'GitHubSession', :path => 'Local Pods/GitHubSession'
pod 'DateAgo', :path => 'Local Pods/DateAgo'
pod 'StringHelpers', :path => 'Local Pods/StringHelpers'
end
def testing_pods
# normal pods
pod 'AlamofireNetworkActivityIndicator', '~> 2.1'
pod 'HTMLString', '~> 4.0.1'
pod 'NYTPhotoViewer', '~> 1.1.0'
pod 'SDWebImage/GIF', '~> 4.0.0'
pod 'SnapKit', '~> 4.0.0'
pod 'TUSafariActivity', '~> 1.0.0'
pod 'SwiftLint'
pod 'Fabric'
pod 'Crashlytics'
pod 'Tabman', '~> 1.8'
pod 'Firebase/Core'
pod 'Firebase/Database'
# prerelease pods
pod 'IGListKit/Swift', :git => 'https://github.com/Instagram/IGListKit.git', :branch => 'swift'
pod 'StyledTextKit', :git => 'https://github.com/GitHawkApp/StyledTextKit.git', :branch => 'master'
pod 'Highlightr', :git => 'https://github.com/GitHawkApp/Highlightr.git', :branch => 'master'
pod 'FlatCache', :git => 'https://github.com/GitHawkApp/FlatCache.git', :branch => 'master'
pod 'MessageViewController', :git => 'https://github.com/GitHawkApp/MessageViewController.git', :branch => 'master'
pod 'ContextMenu', :git => 'https://github.com/GitHawkApp/ContextMenu.git', :branch => 'master'
pod 'cmark-gfm-swift', :git => 'https://github.com/GitHawkApp/cmark-gfm-swift.git', :branch => 'master'
pod 'Squawk', :git => 'https://github.com/GitHawkApp/Squawk.git', :branch => 'master'
# debugging pods
pod 'FLEX', '~> 2.0', :configurations => ['Debug', 'TestFlight']
# Local Pods w/ custom changes
pod 'SwipeCellKit', :path => 'Local Pods/SwipeCellKit'
end
target 'Freetime' do
platform :ios, '11.0'
session_pods
testing_pods
end
target 'FreetimeWatch' do
end
target 'FreetimeWatch Extension' do
platform :watchos, '3.0'
session_pods
end
target 'FreetimeTests' do
# normal pods
pod 'FBSnapshotTestCase'
session_pods
testing_pods
end
post_install do |installer|
system("sh tools/generateAcknowledgements.sh")
end