Last active
August 29, 2015 14:17
-
-
Save kirang89/c41c4a7bd9e18ba573cd to your computer and use it in GitHub Desktop.
An example Podfile to bootstrap your iOS application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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