Skip to content

Instantly share code, notes, and snippets.

@durul
Created April 22, 2017 23:05
Show Gist options
  • Save durul/8aa1523b5767c73e075ca2a3e3e7b5e3 to your computer and use it in GitHub Desktop.
Save durul/8aa1523b5767c73e075ca2a3e3e7b5e3 to your computer and use it in GitHub Desktop.
Podfile
# platform :ios, '10.0'
use_frameworks!
target 'combat' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
# Pods for combat
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :tag => ‘4.4.0’
pod 'PINRemoteImage', '~> 2.1'
pod 'BRYXBanner', :git => 'https://github.com/bryx-inc/BRYXBanner.git', :tag => ‘0.7.1’
pod 'SwiftyBeaver', :git => 'https://github.com/SwiftyBeaver/SwiftyBeaver.git', :tag => '1.1.1'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.1'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment