23 lines
533 B
Ruby
23 lines
533 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
|
|
target 'iOSTask' do
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
# Pods for iOSTask
|
|
pod 'Alamofire'
|
|
pod 'AlamofireObjectMapper', :git => 'https://github.com/RomanPodymov/AlamofireObjectMapper.git', :branch => 'master'
|
|
pod 'AlamofireImage'
|
|
|
|
target 'iOSTaskTests' do
|
|
inherit! :search_paths
|
|
# Pods for testing
|
|
end
|
|
|
|
target 'iOSTaskUITests' do
|
|
# Pods for testing
|
|
end
|
|
|
|
end
|