Skip to content

Instantly share code, notes, and snippets.

@kirang89
Last active August 29, 2015 14:17
Show Gist options
  • Save kirang89/c41c4a7bd9e18ba573cd to your computer and use it in GitHub Desktop.
Save kirang89/c41c4a7bd9e18ba573cd to your computer and use it in GitHub Desktop.
An example Podfile to bootstrap your iOS application
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
target '<App_name_here>' do
# Logging & Analytics
pod 'CocoaLumberjack', '~> 1.9.0'
pod 'CrashlyticsFramework'
pod 'CrashlyticsLumberjack', '~>1.0.0'
# Networking
pod 'AFNetworking'
# Database Stuff
pod 'Mantle'
pod 'MagicalRecord/Shorthand'
# iOS Keychain wrapper
pod 'SSKeychain'
# Datetime heavy lifting
pod 'DateTools'
# Mock out HTTP requests
pod 'OHHTTPStubs'
# Url image downloader + cacher
pod 'SDWebImage'
# Check network connectivity
pod 'Reachability'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment