forked from karmarama/Networking
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKRNetworking.podspec
More file actions
Latest commit
23 lines (19 loc) · 795 Bytes
/
Copy pathKRNetworking.podspec
File metadata and controls
23 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.newdo |s|
s.name="KRNetworking"
s.version="1.0.1"
s.summary="KRNetworking: Networking made simple"
s.description=<<-DESC
KRNetworking abstracts network commands using Swift Generics to do away with
writing boiler plate for networking.
DESC
s.homepage="https://github.com/karmarama/Networking"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Tim Searle"=>"tim.searle@karmarama.com"}
s.source={:git=>"https://github.com/karmarama/Networking.git",:tag=>"#{s.version}"}
s.source_files="Sources/**/*.swift"
s.swift_versions=['5.0']
s.ios.deployment_target='10.0'
s.osx.deployment_target='10.10'
s.tvos.deployment_target='10.0'
s.watchos.deployment_target='3.0'
end