From daf6853cfafe6068dc6c60d9408b5f97abe643e2 Mon Sep 17 00:00:00 2001 From: Sam Vermette Date: Tue, 11 Sep 2012 15:41:12 -0400 Subject: [PATCH] [Update] SVHTTPRequest (0.3) --- SVHTTPRequest/0.3/SVHTTPRequest.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 SVHTTPRequest/0.3/SVHTTPRequest.podspec diff --git a/SVHTTPRequest/0.3/SVHTTPRequest.podspec b/SVHTTPRequest/0.3/SVHTTPRequest.podspec new file mode 100644 index 00000000..e114cdbb --- /dev/null +++ b/SVHTTPRequest/0.3/SVHTTPRequest.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'SVHTTPRequest' + s.version = '0.3' + s.platform = :ios + 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 => '0.3' } + + s.description = 'SVHTTPRequest is a simple and extremely straightforward way to communicate with RESTful web APIs for iOS and Mac. It’s a simpler and cleaner alternative to bulky ASIHTTPRequest, AFNetworking and RESTKit. It is blocked-based, uses NSURLConnection, ARC, as well as NSJSONSerialization to automatically parse JSON responses (making it only compatible with iOS 5 and Mac OS X Lion).' + + s.source_files = 'SVHTTPRequest/*.{h,m}' + s.preserve_paths = 'Demo' + s.requires_arc = true +end