forked from grgcombs/JSONTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSONTools.podspec
21 lines (19 loc) · 927 Bytes
/
JSONTools.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "JSONTools"
s.version = "1.0.5"
s.summary = "JSON Patch, JSON Pointer, and JSON Schema Validation in Objective-C"
s.description = <<-DESC
This Objective-C library is a collection of classes and categories that implement
three powerful new features (JSON Patch, JSON Pointer, JSON Schema) that work with
JSON data (represented by NSDictionaries and NSArrays in Objective-C).
DESC
s.homepage = "https://github.com/grgcombs/JSONTools"
s.license = "MIT"
s.author = { "Greg Combs" => "gcombs@gmail.com" }
s.platform = :ios
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/grgcombs/JSONTools.git", :tag => "v#{s.version}" }
s.source_files = "JSONTools/*.{h,m}"
s.dependency "KiteJSONValidator", '~> 0.2.2'
s.requires_arc = true
end