-
Notifications
You must be signed in to change notification settings - Fork 78
/
PMHTTP.podspec
32 lines (24 loc) · 1.03 KB
/
PMHTTP.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "PMHTTP"
s.version = "4.5.0"
s.summary = "Swift/Obj-C HTTP framework with a focus on REST and JSON"
s.description = <<-DESC
PMHTTP is an HTTP framework built around NSURLSession and designed for Swift while retaining Obj-C compatibility.
DESC
s.homepage = "https://github.com/postmates/PMHTTP"
s.license = { :type => "MIT", :file => "LICENSE-MIT" }
s.author = "Lily Ballard"
s.social_media_url = "https://twitter.com/LilyInTech"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.swift_version = '4.0'
s.source = { :git => "https://github.com/postmates/PMHTTP.git", :tag => "v#{s.version}" }
s.source_files = "Sources"
s.private_header_files = "Sources/PMHTTPManager*.h"
s.framework = "CFNetwork"
s.library = 'c++'
s.module_map = "Sources/pmhttp.modulemap"
s.dependency "PMJSON", ">= 3.0", "< 5.0"
end