Skip to content

Instantly share code, notes, and snippets.

@thiagolioy
Created November 21, 2016 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagolioy/1db64d8ef87f341af38570dcaf106b8f to your computer and use it in GitHub Desktop.
Save thiagolioy/1db64d8ef87f341af38570dcaf106b8f to your computer and use it in GitHub Desktop.
MarvelApp podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'Marvel' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
plugin 'cocoapods-keys', {
:project => "Marvel",
:keys => [
"MarvelApiKey",
"MarvelPrivateKey"
]}
# Pods for Marvel
pod 'SwiftGen'
pod 'RxSwift', '~> 3.0.0-beta.2'
pod 'Moya/RxSwift','~> 8.0.0-beta.1'
pod 'Moya-ObjectMapper/RxSwift', :git => 'https://github.com/ivanbruel/Moya-ObjectMapper'
pod 'CryptoSwift'
pod 'Dollar'
pod 'Kingfisher'
pod "Reusable"
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
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment