-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathKiteJSONValidator.podspec
30 lines (26 loc) · 1.31 KB
/
KiteJSONValidator.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
Pod::Spec.new do |s|
s.name = "KiteJSONValidator"
s.summary = "A native Objective-C JSON schema validator supporting JSON Schema draft 4"
s.description = <<-DESC
A native Objective-C JSON schema validator supporting [JSON Schema draft 4] [schemalink] released under the MIT license.
Notes: This implementation does not support inline dereferencing (see [section 7.2.3] [section723] of the JSON Schema Spec).
Development discussion [here] [devLink]
[schemalink]: http://tools.ietf.org/html/draft-zyp-json-schema-04
[section723]: http://json-schema.org/latest/json-schema-core.html#anchor30
[devlink]: https://groups.google.com/forum/#!forum/kitejsonvalidator-development
DESC
s.homepage = "https://github.com/samskiter/KiteJSONValidator"
s.license = "MIT"
s.authors = { "Sam Duke" => "[email protected]" }
s.version = "0.2.2"
s.source = { :git => "https://github.com/samskiter/KiteJSONValidator.git", :tag => "v#{s.version}"}
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = "Sources/*.{h,m}"
s.xcconfig = {
'ONLY_ACTIVE_ARCH' => 'NO'
}
s.subspec "KiteJSONResources" do |sp|
sp.resource_bundles = { 'KiteJSONValidator' => ['Resources/ReferenceSchemae/*'] }
end
end