-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpodfile
30 lines (25 loc) · 842 Bytes
/
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def pods
pod 'ESPullToRefresh', :git => 'https://github.com/eggswift/pull-to-refresh.git', :branch => 'swift3'
pod 'Toaster', '~> 2.0'
pod 'Alamofire', '~> 4.0'
pod 'ObjectMapper'
pod 'SwiftyJSON'
pod 'Kingfisher'
pod 'Cartography', :git => 'https://github.com/alexiosdev/Cartography.git', :branch => 'swift3_alex'
pod 'ReactiveSwift', '~> 1.0.0-alpha.1'
pod 'JTSImageViewController'
pod 'EZSwiftExtensions', :git => 'https://github.com/lfarah/EZSwiftExtensions.git'
end
target 'TheOne' do
pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end