Skip to content

Commit

Permalink
Initial Podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-lima committed Apr 15, 2014
1 parent 04d09ba commit 6eb684f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions JSONTools.podspec
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

0 comments on commit 6eb684f

Please sign in to comment.