Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
Adding new json podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
vilanovi committed Feb 16, 2015
1 parent 9877382 commit 0838282
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions PersistentModel.podspec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "PersistentModel",
"version": "0.2.0",
"summary": "Simple key-value storage model for iOS.",
"description": "PersistentModel uses the same concept of context and persistent store as CoreData does mixed with a NSCoding protocol to encode and decode model objects.\nWrite down your classes by code and add the coding protocol and you will have a full operational persistent object management. It’s fast, simple, and very useful when there is no need to create complex queries among all set of objects.\nAlso, PersistentModel supports multiple key accessing via KVC, meaning you can define additional keys to access and retrieve your properties. This is very useful to set values from dictionaries whose come from some external server.",
"homepage": "https://github.com/mobilejazz/PersistentModel-iOS",
"license": {
"type": "Apache License, Version 2.0",
"file": "LICENSE.txt"
},
"authors": {
"Mobile Jazz": "[email protected]"
},
"social_media_url": "http://twitter.com/mobilejazz",
"platforms": {
"ios": "7.0"
},
"source": {
"git": "https://github.com/mobilejazz/PersistentModel-iOS.git",
"tag": "0.2.0"
},
"source_files": "Source/*.{h,m}",
"frameworks": "UIKit",
"dependencies": {
"FMDB": [
]
},
"requires_arc": true
}

0 comments on commit 0838282

Please sign in to comment.