forked from tidwall/SnapHTTP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnapHTTP.podspec
More file actions
16 lines (16 loc) · 803 Bytes
/
SnapHTTP.podspec
File metadata and controls
16 lines (16 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "SnapHTTP"
s.version = "1.1.0"
s.summary = "An incredibly simple HTTP client library for Swift."
s.homepage = "https://github.com/tidwall/SnapHTTP"
s.license = { :type => "Attribution License", :file => "LICENSE" }
s.source = { :git => "https://github.com/tidwall/SnapHTTP.git", :tag => "v#{s.version}" }
s.authors = { 'Josh Baker' => 'joshbaker77@gmail.com' }
s.social_media_url = "https://twitter.com/tidwall"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.ios.platform = :ios, "8.0"
s.osx.platform = :osx, "10.10"
s.source_files = "SnapHTTP/http.swift"
s.requires_arc = true
end