├── .gitignore ├── CHANGELOG.md ├── Classes ├── MDMCoreData.h ├── MDMCoreDataCore │ └── MDMCoreDataMacros.h ├── MDMFetchedResultsCollectionDataSource │ ├── MDMFetchedResultsCollectionDataSource.h │ └── MDMFetchedResultsCollectionDataSource.m ├── MDMFetchedResultsTableDataSource │ ├── MDMFetchedResultsTableDataSource.h │ └── MDMFetchedResultsTableDataSource.m ├── MDMPersistenceController │ ├── MDMPersistenceController.h │ └── MDMPersistenceController.m └── NSManagedObject+MDMCoreDataAdditions │ ├── NSManagedObject+MDMCoreDataAdditions.h │ └── NSManagedObject+MDMCoreDataAdditions.m ├── Example ├── MDMCoreData.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── MDMCoreData.xcworkspace │ └── contents.xcworkspacedata ├── MDMCoreData │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Event.h │ ├── Event.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── MDMAppDelegate.h │ ├── MDMAppDelegate.m │ ├── MDMCollectionViewCell.h │ ├── MDMCollectionViewCell.m │ ├── MDMCoreData-Info.plist │ ├── MDMCoreData-Prefix.pch │ ├── MDMCoreData.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── MDMCoreData.xcdatamodel │ │ │ └── contents │ ├── MDMCoreDataFatalErrorAlertView.h │ ├── MDMCoreDataFatalErrorAlertView.m │ ├── MDMDetailViewController.h │ ├── MDMDetailViewController.m │ ├── MDMMasterCollectionViewController.h │ ├── MDMMasterCollectionViewController.m │ ├── MDMMasterViewController.h │ ├── MDMMasterViewController.m │ ├── MDMPersistenceControllerViewControllerProtocol.h │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── MDMCoreDataTests │ ├── MDMCoreDataTests-Info.plist │ ├── MDMCoreDataTests.m │ ├── MDMPersistenceControllerTests.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ └── MDMCoreData │ │ │ ├── MDMCoreData.h │ │ │ ├── MDMCoreDataMacros.h │ │ │ ├── MDMFetchedResultsCollectionDataSource.h │ │ │ ├── MDMFetchedResultsTableDataSource.h │ │ │ ├── MDMPersistenceController.h │ │ │ └── NSManagedObject+MDMCoreDataAdditions.h │ └── Public │ │ └── MDMCoreData │ │ ├── MDMCoreData.h │ │ ├── MDMCoreDataMacros.h │ │ ├── MDMFetchedResultsCollectionDataSource.h │ │ ├── MDMFetchedResultsTableDataSource.h │ │ ├── MDMPersistenceController.h │ │ └── NSManagedObject+MDMCoreDataAdditions.h │ ├── Local Podspecs │ └── MDMCoreData.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Pods-MDMCoreData-MDMCoreData │ ├── Pods-MDMCoreData-MDMCoreData-Private.xcconfig │ ├── Pods-MDMCoreData-MDMCoreData-dummy.m │ ├── Pods-MDMCoreData-MDMCoreData-prefix.pch │ └── Pods-MDMCoreData-MDMCoreData.xcconfig │ ├── Pods-MDMCoreData │ ├── Pods-MDMCoreData-acknowledgements.markdown │ ├── Pods-MDMCoreData-acknowledgements.plist │ ├── Pods-MDMCoreData-dummy.m │ ├── Pods-MDMCoreData-environment.h │ ├── Pods-MDMCoreData-resources.sh │ ├── Pods-MDMCoreData.debug.xcconfig │ └── Pods-MDMCoreData.release.xcconfig │ ├── Pods-MDMCoreDataTests-MDMCoreData │ ├── Pods-MDMCoreDataTests-MDMCoreData-Private.xcconfig │ ├── Pods-MDMCoreDataTests-MDMCoreData-dummy.m │ ├── Pods-MDMCoreDataTests-MDMCoreData-prefix.pch │ └── Pods-MDMCoreDataTests-MDMCoreData.xcconfig │ └── Pods-MDMCoreDataTests │ ├── Pods-MDMCoreDataTests-acknowledgements.markdown │ ├── Pods-MDMCoreDataTests-acknowledgements.plist │ ├── Pods-MDMCoreDataTests-dummy.m │ ├── Pods-MDMCoreDataTests-environment.h │ ├── Pods-MDMCoreDataTests-resources.sh │ ├── Pods-MDMCoreDataTests.debug.xcconfig │ └── Pods-MDMCoreDataTests.release.xcconfig ├── LICENSE ├── MDMCoreData.podspec └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Classes/MDMCoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMCoreData.h -------------------------------------------------------------------------------- /Classes/MDMCoreDataCore/MDMCoreDataMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMCoreDataCore/MDMCoreDataMacros.h -------------------------------------------------------------------------------- /Classes/MDMFetchedResultsCollectionDataSource/MDMFetchedResultsCollectionDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMFetchedResultsCollectionDataSource/MDMFetchedResultsCollectionDataSource.h -------------------------------------------------------------------------------- /Classes/MDMFetchedResultsCollectionDataSource/MDMFetchedResultsCollectionDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMFetchedResultsCollectionDataSource/MDMFetchedResultsCollectionDataSource.m -------------------------------------------------------------------------------- /Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.h -------------------------------------------------------------------------------- /Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.m -------------------------------------------------------------------------------- /Classes/MDMPersistenceController/MDMPersistenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMPersistenceController/MDMPersistenceController.h -------------------------------------------------------------------------------- /Classes/MDMPersistenceController/MDMPersistenceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/MDMPersistenceController/MDMPersistenceController.m -------------------------------------------------------------------------------- /Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.h -------------------------------------------------------------------------------- /Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.m -------------------------------------------------------------------------------- /Example/MDMCoreData.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MDMCoreData.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MDMCoreData.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MDMCoreData/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MDMCoreData/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/Event.h -------------------------------------------------------------------------------- /Example/MDMCoreData/Event.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/Event.m -------------------------------------------------------------------------------- /Example/MDMCoreData/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MDMCoreData/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMAppDelegate.h -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMAppDelegate.m -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCollectionViewCell.h -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCollectionViewCell.m -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCoreData-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCoreData-Info.plist -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCoreData-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCoreData-Prefix.pch -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCoreData.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCoreData.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCoreData.xcdatamodeld/MDMCoreData.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCoreData.xcdatamodeld/MDMCoreData.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCoreDataFatalErrorAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCoreDataFatalErrorAlertView.h -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMCoreDataFatalErrorAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMCoreDataFatalErrorAlertView.m -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMDetailViewController.h -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMDetailViewController.m -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMMasterCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMMasterCollectionViewController.h -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMMasterCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMMasterCollectionViewController.m -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMMasterViewController.h -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMMasterViewController.m -------------------------------------------------------------------------------- /Example/MDMCoreData/MDMPersistenceControllerViewControllerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/MDMPersistenceControllerViewControllerProtocol.h -------------------------------------------------------------------------------- /Example/MDMCoreData/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/MDMCoreData/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreData/main.m -------------------------------------------------------------------------------- /Example/MDMCoreDataTests/MDMCoreDataTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreDataTests/MDMCoreDataTests-Info.plist -------------------------------------------------------------------------------- /Example/MDMCoreDataTests/MDMCoreDataTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreDataTests/MDMCoreDataTests.m -------------------------------------------------------------------------------- /Example/MDMCoreDataTests/MDMPersistenceControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/MDMCoreDataTests/MDMPersistenceControllerTests.m -------------------------------------------------------------------------------- /Example/MDMCoreDataTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MDMCoreData/MDMCoreData.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMCoreData.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MDMCoreData/MDMCoreDataMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMCoreDataCore/MDMCoreDataMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MDMCoreData/MDMFetchedResultsCollectionDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMFetchedResultsCollectionDataSource/MDMFetchedResultsCollectionDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MDMCoreData/MDMFetchedResultsTableDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MDMCoreData/MDMPersistenceController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMPersistenceController/MDMPersistenceController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/MDMCoreData/NSManagedObject+MDMCoreDataAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MDMCoreData/MDMCoreData.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMCoreData.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MDMCoreData/MDMCoreDataMacros.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMCoreDataCore/MDMCoreDataMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MDMCoreData/MDMFetchedResultsCollectionDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMFetchedResultsCollectionDataSource/MDMFetchedResultsCollectionDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MDMCoreData/MDMFetchedResultsTableDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMFetchedResultsTableDataSource/MDMFetchedResultsTableDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MDMCoreData/MDMPersistenceController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/MDMPersistenceController/MDMPersistenceController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MDMCoreData/NSManagedObject+MDMCoreDataAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/NSManagedObject+MDMCoreDataAdditions/NSManagedObject+MDMCoreDataAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MDMCoreData.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Local Podspecs/MDMCoreData.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData-MDMCoreData/Pods-MDMCoreData-MDMCoreData.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreData/Pods-MDMCoreData.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests-MDMCoreData/Pods-MDMCoreDataTests-MDMCoreData.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/Example/Pods/Target Support Files/Pods-MDMCoreDataTests/Pods-MDMCoreDataTests.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/LICENSE -------------------------------------------------------------------------------- /MDMCoreData.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/MDMCoreData.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmorey/MDMCoreData/HEAD/README.md --------------------------------------------------------------------------------