Created
September 9, 2013 12:19
-
-
Save rjyo/6494831 to your computer and use it in GitHub Desktop.
deployment target set to 6.0 to avoid compile error
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
Pod::Spec.new do |s| | |
s.name = 'SVHTTPRequest' | |
s.version = '0.5' | |
s.license = 'MIT' | |
s.summary = 'Simple REST client for iOS and Mac.' | |
s.homepage = 'http://samvermette.com/310' | |
s.author = { 'Sam Vermette' => '[email protected]' } | |
s.source = { :git => 'https://github.com/samvermette/SVHTTPRequest.git', :tag => s.version.to_s } | |
s.description = 'SVHTTPRequest lets you easily interact with RESTful (GET, POST, DELETE, PUT) web APIs. It is blocked-based, uses NSURLConnection, ARC, as well as NSJSONSerialization to automatically parse JSON responses.' | |
s.source_files = 'SVHTTPRequest/*.{h,m}' | |
s.requires_arc = true | |
s.ios.deployment_target = '6.0' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment