[Update] SVHTTPRequest (0.4)

This commit is contained in:
Sam Vermette
2013-01-24 03:31:56 -05:00
parent 382a5abe7f
commit e4bcc7bddd
+15
View File
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = 'SVHTTPRequest'
s.version = '0.4'
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 is a simple and extremely straightforward way to communicate with RESTful web APIs for iOS and Mac. It is blocked-based, uses NSURLConnection, ARC, as well as NSJSONSerialization to automatically parse JSON responses (making it only compatible with iOS 5+ and OS X 10.7+).'
s.source_files = 'SVHTTPRequest/*.{h,m}'
s.preserve_paths = 'Demo'
s.requires_arc = true
end