-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTTPSession.podspec
22 lines (22 loc) · 998 Bytes
/
HTTPSession.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "HTTPSession"
s.version = "0.5"
s.summary = "A minimalistic HTTP client written in Swift, based on URLSession."
s.description = <<-DESC
- No unnecessary abstractions. Uses URLSession, URLRequest and HTTPURLResponse.
- Progress tracking for both requests and responses.
- Support for large files.
- Minimalistic and single-purpose. The client should handle HTTP requests, responses and data transfer both ways. That's it.
DESC
s.homepage = "https://github.com/BjornRuud/HTTPSession"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Bjørn Olav Ruud" => "[email protected]" }
s.social_media_url = ""
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "10.0"
s.source = { :git => ".git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
end