-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJSONLookup.podspec
More file actions
28 lines (21 loc) · 841 Bytes
/
JSONLookup.podspec
File metadata and controls
28 lines (21 loc) · 841 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
#!/usr/bin/ruby
Pod::Spec.new do |spec|
spec.name = "JSONLookup"
spec.version = "0.0.1"
spec.summary = "Lookup JSON member values with typesafe dynamic member lookup syntax."
spec.homepage = "https://github.com/loudmouth/JSONLookup"
spec.swift_version = "4.2"
spec.license = {
:type => 'MIT',
:file => 'LICENSE'
}
spec.authors = { "JP Wright" => "jp@contentful.com" }
spec.source = { :git => "https://github.com/loudmouth/JSONLookup.git",
:tag => spec.version.to_s }
spec.requires_arc = true
spec.source_files = 'Sources/JSONLookup/*.swift'
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
end