Skip to content

Instantly share code, notes, and snippets.

@rjyo
Created September 9, 2013 12:19
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 rjyo/6494831 to your computer and use it in GitHub Desktop.
Save rjyo/6494831 to your computer and use it in GitHub Desktop.
deployment target set to 6.0 to avoid compile error
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' => 'hello@samvermette.com' }
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