[Add] FCVideo 3.2.21
[CocoaPods.git] / Specs / b / a / 1 / MDMCoreData / 1.0.1 / MDMCoreData.podspec.json
blob636863396a5b4b8481af088f31f42f56c02f5280
2   "name": "MDMCoreData",
3   "version": "1.0.1",
4   "summary": "A collection of lightweight Core Data classes for iOS and OS X.",
5   "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",
6   "homepage": "https://github.com/mmorey/MDMCoreData",
7   "license": "MIT",
8   "authors": {
9     "Matthew Morey": "me@matthewmorey.com"
10   },
11   "source": {
12     "git": "https://github.com/mmorey/MDMCoreData.git",
13     "tag": "1.0.1"
14   },
15   "social_media_url": "https://twitter.com/xzolian",
16   "requires_arc": true,
17   "source_files": "Classes/*.{h,m}",
18   "frameworks": "CoreData",
19   "platforms": {
20     "ios": "6.0",
21     "osx": "10.8"
22   },
23   "subspecs": [
24     {
25       "name": "MDMCoreDataCore",
26       "source_files": "Classes/MDMCoreDataCore/*.{h,m}",
27       "requires_arc": true
28     },
29     {
30       "name": "MDMPersistenceController",
31       "source_files": "Classes/MDMPersistenceController/MDMPersistenceController.{h,m}",
32       "dependencies": {
33         "MDMCoreData/MDMCoreDataCore": [
35         ]
36       },
37       "requires_arc": true
38     },
39     {
40       "name": "MDMFetchedResultsTableDataSource",
41       "platforms": {
42         "ios": "6.0"
43       },
44       "ios": {
45         "source_files": "Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.{h,m}"
46       },
47       "osx": {
48         "source_files": ""
49       },
50       "dependencies": {
51         "MDMCoreData/MDMCoreDataCore": [
53         ]
54       },
55       "requires_arc": true
56     },
57     {
58       "name": "NSManagedObject+MDMCoreDataAdditions",
59       "ios": {
60         "source_files": "Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.{h,m}"
61       },
62       "dependencies": {
63         "MDMCoreData/MDMCoreDataCore": [
65         ]
66       },
67       "requires_arc": true
68     }
69   ]