-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04d09ba
commit 6eb684f
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "JSONTools" | ||
s.version = "0.0.1" | ||
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" => "[email protected]" } | ||
s.platform = :ios | ||
s.ios.deployment_target = "7.0" | ||
|
||
s.source = { :git => "https://github.com/grgcombs/JSONTools.git", :tag => '0.0.1' } | ||
s.source_files = "JSONTools/*.{h,m}" | ||
|
||
s.requires_arc = true | ||
end |