-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFTAPIKit.podspec
28 lines (25 loc) · 1.4 KB
/
FTAPIKit.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
Pod::Spec.new do |s|
s.name = "FTAPIKit"
s.version = "1.5.0"
s.summary = "Declarative, generic and protocol-oriented REST API framework using URLSession and Codable"
s.description = <<-DESC
Protocol-oriented framework for communication with REST APIs.
Endpoint protocols describe the API resource access points
and the requests/responses codable types. Server protocol describes web services
and enables the user to call endoints in a type-safe manner.
DESC
s.homepage = "https://github.com/futuredapp/FTAPIKit"
s.license = { type: "MIT", file: "LICENSE" }
s.author = { "Matěj Kašpar Jirásek": "[email protected]" }
s.social_media_url = "https://twitter.com/Futuredapps"
s.source = { git: "https://github.com/futuredapp/FTAPIKit.git", tag: s.version.to_s }
s.source_files = "Sources/FTAPIKit/**/*"
s.exclude_files = "Sources/FTAPIKit/Documentation.docc/**/*"
s.frameworks = ["Foundation", "CoreServices"]
s.weak_frameworks = ["Combine"]
s.swift_version = "5.1"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "5.0"
s.tvos.deployment_target = "12.0"
end