-
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.
Revert "Changing the podspect to JSON format"
This reverts commit 3f3d5c0. The JSON format interferes with Travis CI -- Rolling back for now.
- Loading branch information
Showing
2 changed files
with
25 additions
and
28 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,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "JSONTools" | ||
s.version = "1.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 => "v#{s.version}" } | ||
s.source_files = "JSONTools/*.{h,m}" | ||
s.dependency "KiteJSONValidator", '~> 0.1.1-Pod' | ||
|
||
s.xcconfig = { | ||
'ONLY_ACTIVE_ARCH' => 'NO' | ||
} | ||
|
||
s.requires_arc = true | ||
end |
This file was deleted.
Oops, something went wrong.