- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathHTTPKit.podspec
More file actions
Latest commit
15 lines (15 loc) · 693 Bytes
/
Copy pathHTTPKit.podspec
File metadata and controls
15 lines (15 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.newdo |s|
s.name="HTTPKit"
s.version="0.1.0"
s.summary="Task based, promise like syntax, RESTful, HTTP library for iOS and OS X. Built off ConcurrentKit and NSURLSession."
s.homepage="https://github.com/daltoniam/HTTPKit"
s.license='Apache License, Version 2.0'
s.author={"Dalton Cherry"=>"daltoniam@gmail.com"}
s.source={:git=>"https://github.com/daltoniam/HTTPKit.git",:tag=>"#{s.version}"}
s.social_media_url='http://twitter.com/daltoniam'
s.ios.deployment_target='7.0'
s.osx.deployment_target='10.9'
s.source_files='*.{h,m}'
s.dependency'ConcurrentKit'
s.requires_arc=true
end