- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathURLQueryCoder.podspec
More file actions
Latest commit
26 lines (20 loc) · 842 Bytes
/
Copy pathURLQueryCoder.podspec
File metadata and controls
26 lines (20 loc) · 842 Bytes
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
Pod::Spec.newdo |spec|
spec.name="URLQueryCoder"
spec.version="1.3.0"
spec.summary="Swift Encoder and Decoder for URL query"
spec.homepage="https://github.com/almazrafi/URLQueryCoder"
spec.license={:type=>'MIT',:file=>'LICENSE'}
spec.author={"Almaz Ibragimov"=>"almazrafi@gmail.com"}
spec.source={:git=>"https://github.com/almazrafi/URLQueryCoder.git",:tag=>"#{spec.version}"}
spec.swift_version='5.9'
spec.requires_arc=true
spec.source_files='Sources/**/*.swift'
spec.ios.frameworks='Foundation'
spec.ios.deployment_target="13.0"
spec.osx.frameworks='Foundation'
spec.osx.deployment_target="11.5"
spec.watchos.frameworks='Foundation'
spec.watchos.deployment_target="6.0"
spec.tvos.frameworks='Foundation'
spec.tvos.deployment_target="13.0"
end