Created
August 1, 2012 07:10
-
-
Save kukat/3224423 to your computer and use it in GitHub Desktop.
Podfile with custom pod
This file contains 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
platform :ios | |
pod 'AFNetworking', '~> 1.0RC1' | |
#pod 'SDURLCache', '~> 1.2' | |
pod do |s| | |
s.name = 'SDURLCache' | |
s.version = '1.2a' | |
s.platform = :ios | |
s.summary = 'URLCache subclass with on-disk cache support on iPhone/iPad.' | |
s.homepage = 'https://github.com/rs/SDURLCache' | |
s.author = { 'Olivier Poitrey' => '[email protected]' } | |
s.source = { :git => 'https://github.com/rs/SDURLCache.git', :commit => '0a8d76fc8cd2c9e01817bbcab3af37c41895cf70' } | |
s.source_files = 'SDURLCache.h', 'SDURLCache.m', 'SDCachedURLResponse.h', 'SDCachedURLResponse.m' | |
end | |
pod 'JSONKit', '~> 1.4' | |
pod 'MBProgressHUD', '~> 0.5' | |
pod 'TestFlightSDK', '~> 1.0' | |
pod 'MessagePack', '~> 1.0.0' | |
pod 'ISO8601DateFormatter', '~> 0.6' | |
pod 'SVPullToRefresh', '~> 0.1' | |
pod 'Reachability', '~> 3.0.0' | |
pod 'MagicalRecord', '~> 2.0.3' | |
#pod 'MagicalRecord', :git => 'https://github.com/magicalpanda/MagicalRecord.git' | |
pod 'TPKeyboardAvoiding', '~> 0.0.1' | |
pod 'SSKeychain', '~> 0.1.4' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment