This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
forked from vilanovi/PersistentModel
-
Notifications
You must be signed in to change notification settings - Fork 0
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
29 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,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 | ||
} |