This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
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
Showing
1 changed file
with
6 additions
and
7 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 |
---|---|---|
@@ -1,24 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "Motis" | ||
s.version = "0.4.2" | ||
s.version = "0.4.3" | ||
s.summary = "Easy JSON to NSObject mapping using Cocoa's Key Value Coding (KVC)" | ||
|
||
s.description = <<-DESC | ||
Parse and set your JSON objects to objective-C objects using Cocoa's KeyValueCoding. | ||
This category sets a minimalist set of methods to map the JSON keys into class properties and parse and set your JSON objects into NSObjects subclasses. | ||
Parse and set your JSON objects to objective-C objects using Cocoa's KeyValueCoding. | ||
This category sets a minimalist set of methods to map the JSON keys into class properties and parse and set your JSON objects into NSObjects subclasses. | ||
For a basic overview of how Motis works checkout the MobileJazz blog post: | ||
http://blog.mobilejazz.cat/ios-using-kvc-to-parse-json | ||
For a basic overview of how Motis works checkout the MobileJazz blog post: http://blog.mobilejazz.cat/ios-using-kvc-to-parse-json | ||
Simple & Powerful! | ||
Simple & Powerful. | ||
DESC | ||
|
||
s.homepage = "https://github.com/mobilejazz/Motis" | ||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { "Mobile Jazz" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/mobilejazzcat" | ||
s.source = { :git => "https://github.com/mobilejazz/Motis.git", :tag => "0.4.2" } | ||
s.source = { :git => "https://github.com/mobilejazz/Motis.git", :tag => "0.4.3" } | ||
s.source_files = 'Motis.h', 'NSObject+Motis.{h,m}' | ||
s.framework = 'Foundation' | ||
s.requires_arc = true | ||
|