Skip to content

Instantly share code, notes, and snippets.

@fabiosoft
Created December 6, 2016 11:03
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 fabiosoft/d643a974fd7471c8f04b94cc7bcae91e to your computer and use it in GitHub Desktop.
Save fabiosoft/d643a974fd7471c8f04b94cc7bcae91e to your computer and use it in GitHub Desktop.
Generic podfile form common app
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'yourapp' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for your app
## utils
pod 'CocoaLumberjack' #for obj-c
pod 'CocoaLumberjack/Swift' #for swift
pod 'BFKit-Swift', :git => 'https://github.com/FabrizioBrancati/BFKit-Swift.git', :branch => 'swift3.0'
## network
pod 'Alamofire', '~> 4.0.0'
pod 'SwiftyJSON', '~> 3.1.3'
pod 'CocoaAsyncSocket', '~> 7.5.0'
pod 'SWXMLHash', '~> 3.0.1'
## persistence
pod 'RealmSwift', '~> 2.1.0'
## UI
pod 'PullToRefresher', '~> 2.0'
pod 'Eureka', '~> 2.0.0-beta.1'
pod 'MBProgressHUD', '~> 1.0.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment