Skip to content

Instantly share code, notes, and snippets.

@serhatsezer
Last active February 4, 2018 15:25
Show Gist options
  • Save serhatsezer/da605b06b737e81cf5b0160d95e7dff3 to your computer and use it in GitHub Desktop.
Save serhatsezer/da605b06b737e81cf5b0160d95e7dff3 to your computer and use it in GitHub Desktop.
platform :ios, '9.0'
use_frameworks!
def pod_files
# ProgressBar
pod 'SVProgressHUD'
# Keyboard hiding
pod 'IQKeyboardManagerSwift', '5.0.0'
# Networking
pod 'Alamofire', '~> 4.5'
pod 'Kingfisher', '~> 4.0'
pod 'ObjectMapper', :git => 'https://github.com/Hearst-DD/ObjectMapper.git', :branch => 'swift-4'
# Menu and Interactions
pod 'SideMenu'
pod 'Charts'
pod 'PopupDialog', '~> 0.6'
end
target 'ListApp' do
pod_files
end
# Use all dependency for unit test target as well.
target 'ListAppUnitTests' do
pod_files
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment