forked from TransitApp/SVHTTPRequest
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSVHTTPRequest.podspec
More file actions
Latest commit
12 lines (12 loc) · 711 Bytes
/
Copy pathSVHTTPRequest.podspec
File metadata and controls
12 lines (12 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
Pod::Spec.newdo |s|
s.name='SVHTTPRequest'
s.version='0.5.1'
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
end