blob: ba46776eb0771394cbae678ce895261a640d6c80 [file] [log] [blame]
{
"name": "MDMCoreData",
"version": "1.0.0",
"summary": "A collection of lightweight Core Data classes for iOS and OS X.",
"description": " MDMCoreData is a growing collection of classes that make working with Core Data easier. It does not try to hide Core Data but instead enforces best practices and reduce boiler plate code. All classes are documented and unit tested.\n\n * __MDMPersistenceController (iOS, OS X)__ - A handy controller that sets up an efficient Core Data stack with support for creating multiple child managed object contexts. It has a built-in private managed object context that does asynchronous saving for you with a SQLite store.\n\n * __MDMFetchedResultsTableDataSource (iOS)__ - A class mostly full of boiler plate that implements the fetched results controller delegate and a table data source.\n\n * __NSManagedObject+MDMCoreDataAdditions (iOS, OS X)__ - A category on managed objects that provides helper methods for eliminating boiler plate code.\n",
"homepage": "https://github.com/mmorey/MDMCoreData",
"license": "MIT",
"authors": {
"Matthew Morey": "me@matthewmorey.com"
},
"source": {
"git": "https://github.com/mmorey/MDMCoreData.git",
"tag": "1.0.0"
},
"social_media_url": "https://twitter.com/xzolian",
"requires_arc": true,
"source_files": "Classes/*.{h,m}",
"frameworks": "CoreData",
"platforms": {
"ios": "6.0",
"osx": "10.8"
},
"subspecs": [
{
"name": "MDMCoreDataCore",
"source_files": "Classes/MDMCoreDataCore/*.{h,m}"
},
{
"name": "MDMPersistenceController",
"source_files": "Classes/MDMPersistenceController/MDMPersistenceController.{h,m}",
"dependencies": {
"MDMCoreData/MDMCoreDataCore": [
]
}
},
{
"name": "MDMFetchedResultsTableDataSource",
"platforms": {
"ios": "6.0"
},
"ios": {
"source_files": "Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.{h,m}"
},
"osx": {
"source_files": ""
},
"dependencies": {
"MDMCoreData/MDMCoreDataCore": [
]
}
},
{
"name": "NSManagedObject+MDMCoreDataAdditions",
"ios": {
"source_files": "Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.{h,m}"
},
"dependencies": {
"MDMCoreData/MDMCoreDataCore": [
]
}
}
]
}