-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
38 lines (33 loc) · 1.16 KB
/
Podfile
File metadata and controls
38 lines (33 loc) · 1.16 KB
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
platform :ios, '10.0'
target 'HackerFeed' do
pod 'DACircularProgress'
pod 'FCUtilities', :git => 'https://github.com/marcoarment/FCUtilities.git'
pod 'libHN', :git => 'https://github.com/nealyoung/libHN.git'
pod 'MCSwipeTableViewCell', inhibit_warnings: true
pod 'NYAlertViewController'
pod 'NYSegmentedControl'
pod 'PBWebViewController'
pod 'SSPullToRefresh'
pod 'SVProgressHUD'
pod 'SVPullToRefresh', :git => 'https://github.com/samvermette/SVPullToRefresh.git'
pod 'TTTAttributedLabel'
pod 'ZFDragableModalTransition'
end
target 'HackerFeedTests' do
end
target 'Share Extension' do
pod 'libHN', :git => 'https://github.com/nealyoung/libHN.git'
pod 'MCSwipeTableViewCell', inhibit_warnings: true
pod 'NYSegmentedControl'
pod 'SVProgressHUD'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'SVProgressHUD'
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'SV_APP_EXTENSIONS'
end
end
end
end