-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
30 lines (27 loc) · 1.2 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
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target ‘Authorization’ do
pod 'Alamofire'
pod 'AlamofireObjectMapper', :git => 'https://github.com/tristanhimmelman/AlamofireObjectMapper.git', :branch => 'swift-3'
pod 'KeychainAccess', '~> 3.0'
pod 'PromiseKit', :git => 'https://github.com/mxcl/PromiseKit.git', :branch => 'swift-3.0'
pod 'DateTools'
#pod 'OAuthSwift', '~> 0.5.0'
#pod 'ReachabilitySwift', :git => 'https://github.com/ashleymills/Reachability.swift'
#, :git => 'https://github.com/mxcl/PromiseKit.git', :branch => 'swift-2.0-beta5'
end
target ‘AuthorizationTests’ do
pod 'Alamofire'
pod 'AlamofireObjectMapper', :git => 'https://github.com/tristanhimmelman/AlamofireObjectMapper.git', :branch => 'swift-3'
pod 'KeychainAccess', '~> 3.0'
pod 'PromiseKit', :git => 'https://github.com/mxcl/PromiseKit.git', :branch => 'swift-3.0'
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