├── .gitignore ├── CoreDataUtil.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── chris.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── chris.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CoreDataUtil ├── ApplicationIcon-CDP.icns ├── ApplicationIcon-MOM.icns ├── ApplicationIcon.icns ├── CoreData.ext ├── CoreData │ ├── MFLCoreDataCommon.h │ ├── MFLCoreDataCommon.m │ ├── MFLCoreDataIntrospection.h │ └── MFLCoreDataIntrospection.m ├── CoreDataHistoryObject.h ├── CoreDataHistoryObject.m ├── CoreDataPro-Info.plist ├── CoreDataPro.entitlements ├── CoreDataUtil-Prefix.pch ├── CoreDataUtil.xcdatamodeld │ ├── .xccurrentversion │ └── CoreDataUtil.xcdatamodel │ │ └── contents ├── EntityDataItem.h ├── EntityDataItem.m ├── EntityDataTableView.h ├── EntityDataTableView.m ├── EntityDataTableViewCell.h ├── EntityDataTableViewCell.m ├── EntityTableView.h ├── EntityTableView.m ├── EntityTableViewCell.h ├── EntityTableViewCell.m ├── FetchRequestInfoController.h ├── FetchRequestInfoController.m ├── FetchRequestInfoController.xib ├── GetInfoSheetController.h ├── GetInfoSheetController.m ├── GetInfoSheetController.xib ├── MFLAppDelegate.h ├── MFLAppDelegate.m ├── MFLBuild.h ├── MFLBuild.m ├── MFLConstants.h ├── MFLConstants.m ├── MFLEntityTableCellView.h ├── MFLEntityTableCellView.m ├── MFLMainWindowController.h ├── MFLMainWindowController.m ├── MFLMainWindowController.xib ├── MFLTextTableCellView.h ├── MFLTextTableCellView.m ├── ObjectInfoController.h ├── ObjectInfoController.m ├── ObjectInfoController.xib ├── OpenFileSheetController.h ├── OpenFileSheetController.m ├── OpenFileSheetController.xib ├── ShowDetailSheetController.h ├── ShowDetailSheetController.m ├── ShowDetailSheetController.xib ├── SimulatorItem.h ├── SimulatorItem.m ├── Utils │ ├── MFLCoreDataEditorProjectLoader.h │ ├── MFLCoreDataEditorProjectLoader.m │ ├── MFLUtils.h │ ├── MFLUtils.m │ └── extensions │ │ └── timeago │ │ ├── NSDate+TimeAgo.h │ │ ├── NSDate+TimeAgo.m │ │ └── NSDateTimeAgo.bundle │ │ ├── ar.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── bg.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── cs.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── da.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── de.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── en.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── es.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── fi.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── fr.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── gre.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── he.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── hu.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── is.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── it.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── ja.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── ko.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── lv.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── nb.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── nl.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── pl.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── pt-PT.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── pt.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── ro.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── ru.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── sq.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── sv.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── th.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── tr.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── uk.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── vi.lproj │ │ └── NSDateTimeAgo.strings │ │ ├── zh-Hans.lproj │ │ └── NSDateTimeAgo.strings │ │ └── zh-Hant.lproj │ │ └── NSDateTimeAgo.strings ├── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.xib ├── main.m ├── paintCode │ ├── CoreDataUtilityStyle.h │ └── CoreDataUtilityStyle.m ├── refreshButton.png └── simulatorIcon.png ├── CoreDataUtilImporter ├── CoreDataUtilImporter-Info.plist ├── CoreDataUtilImporter-Prefix.pch ├── GetMetadataForFile.m ├── Importer Read Me.txt ├── MySpotlightImporter.h ├── MySpotlightImporter.m ├── en.lproj │ └── InfoPlist.strings └── main.c ├── CoreDataUtilTests ├── CoreDataUtilTests-Info.plist ├── CoreDataUtilTests.h ├── CoreDataUtilTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md ├── TestFiles ├── SingleEntitySingleAttribut.mom ├── SingleEntitySingleAttribut.sqlite ├── fetchRequest.mom ├── fetchRequest.sqlite └── fetchRequestorig.sqlite ├── docs └── CoreDataUtilityGraphics.pcvd ├── screenShots ├── EverNote.png ├── newProj_Files.png └── newProj_osxApp.png └── tools └── bin └── createCoreDataProject.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/.gitignore -------------------------------------------------------------------------------- /CoreDataUtil.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreDataUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CoreDataUtil.xcodeproj/project.xcworkspace/xcuserdata/chris.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil.xcodeproj/project.xcworkspace/xcuserdata/chris.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CoreDataUtil.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil.xcodeproj/xcuserdata/chris.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CoreDataUtil/ApplicationIcon-CDP.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ApplicationIcon-CDP.icns -------------------------------------------------------------------------------- /CoreDataUtil/ApplicationIcon-MOM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ApplicationIcon-MOM.icns -------------------------------------------------------------------------------- /CoreDataUtil/ApplicationIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ApplicationIcon.icns -------------------------------------------------------------------------------- /CoreDataUtil/CoreData.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreData.ext -------------------------------------------------------------------------------- /CoreDataUtil/CoreData/MFLCoreDataCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreData/MFLCoreDataCommon.h -------------------------------------------------------------------------------- /CoreDataUtil/CoreData/MFLCoreDataCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreData/MFLCoreDataCommon.m -------------------------------------------------------------------------------- /CoreDataUtil/CoreData/MFLCoreDataIntrospection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreData/MFLCoreDataIntrospection.h -------------------------------------------------------------------------------- /CoreDataUtil/CoreData/MFLCoreDataIntrospection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreData/MFLCoreDataIntrospection.m -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataHistoryObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataHistoryObject.h -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataHistoryObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataHistoryObject.m -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataPro-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataPro-Info.plist -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataPro.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataPro.entitlements -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataUtil-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataUtil-Prefix.pch -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataUtil.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataUtil.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /CoreDataUtil/CoreDataUtil.xcdatamodeld/CoreDataUtil.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/CoreDataUtil.xcdatamodeld/CoreDataUtil.xcdatamodel/contents -------------------------------------------------------------------------------- /CoreDataUtil/EntityDataItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityDataItem.h -------------------------------------------------------------------------------- /CoreDataUtil/EntityDataItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityDataItem.m -------------------------------------------------------------------------------- /CoreDataUtil/EntityDataTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityDataTableView.h -------------------------------------------------------------------------------- /CoreDataUtil/EntityDataTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityDataTableView.m -------------------------------------------------------------------------------- /CoreDataUtil/EntityDataTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityDataTableViewCell.h -------------------------------------------------------------------------------- /CoreDataUtil/EntityDataTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityDataTableViewCell.m -------------------------------------------------------------------------------- /CoreDataUtil/EntityTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityTableView.h -------------------------------------------------------------------------------- /CoreDataUtil/EntityTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityTableView.m -------------------------------------------------------------------------------- /CoreDataUtil/EntityTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityTableViewCell.h -------------------------------------------------------------------------------- /CoreDataUtil/EntityTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/EntityTableViewCell.m -------------------------------------------------------------------------------- /CoreDataUtil/FetchRequestInfoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/FetchRequestInfoController.h -------------------------------------------------------------------------------- /CoreDataUtil/FetchRequestInfoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/FetchRequestInfoController.m -------------------------------------------------------------------------------- /CoreDataUtil/FetchRequestInfoController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/FetchRequestInfoController.xib -------------------------------------------------------------------------------- /CoreDataUtil/GetInfoSheetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/GetInfoSheetController.h -------------------------------------------------------------------------------- /CoreDataUtil/GetInfoSheetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/GetInfoSheetController.m -------------------------------------------------------------------------------- /CoreDataUtil/GetInfoSheetController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/GetInfoSheetController.xib -------------------------------------------------------------------------------- /CoreDataUtil/MFLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLAppDelegate.h -------------------------------------------------------------------------------- /CoreDataUtil/MFLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLAppDelegate.m -------------------------------------------------------------------------------- /CoreDataUtil/MFLBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLBuild.h -------------------------------------------------------------------------------- /CoreDataUtil/MFLBuild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLBuild.m -------------------------------------------------------------------------------- /CoreDataUtil/MFLConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLConstants.h -------------------------------------------------------------------------------- /CoreDataUtil/MFLConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLConstants.m -------------------------------------------------------------------------------- /CoreDataUtil/MFLEntityTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLEntityTableCellView.h -------------------------------------------------------------------------------- /CoreDataUtil/MFLEntityTableCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLEntityTableCellView.m -------------------------------------------------------------------------------- /CoreDataUtil/MFLMainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLMainWindowController.h -------------------------------------------------------------------------------- /CoreDataUtil/MFLMainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLMainWindowController.m -------------------------------------------------------------------------------- /CoreDataUtil/MFLMainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLMainWindowController.xib -------------------------------------------------------------------------------- /CoreDataUtil/MFLTextTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLTextTableCellView.h -------------------------------------------------------------------------------- /CoreDataUtil/MFLTextTableCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/MFLTextTableCellView.m -------------------------------------------------------------------------------- /CoreDataUtil/ObjectInfoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ObjectInfoController.h -------------------------------------------------------------------------------- /CoreDataUtil/ObjectInfoController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ObjectInfoController.m -------------------------------------------------------------------------------- /CoreDataUtil/ObjectInfoController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ObjectInfoController.xib -------------------------------------------------------------------------------- /CoreDataUtil/OpenFileSheetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/OpenFileSheetController.h -------------------------------------------------------------------------------- /CoreDataUtil/OpenFileSheetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/OpenFileSheetController.m -------------------------------------------------------------------------------- /CoreDataUtil/OpenFileSheetController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/OpenFileSheetController.xib -------------------------------------------------------------------------------- /CoreDataUtil/ShowDetailSheetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ShowDetailSheetController.h -------------------------------------------------------------------------------- /CoreDataUtil/ShowDetailSheetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ShowDetailSheetController.m -------------------------------------------------------------------------------- /CoreDataUtil/ShowDetailSheetController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/ShowDetailSheetController.xib -------------------------------------------------------------------------------- /CoreDataUtil/SimulatorItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/SimulatorItem.h -------------------------------------------------------------------------------- /CoreDataUtil/SimulatorItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/SimulatorItem.m -------------------------------------------------------------------------------- /CoreDataUtil/Utils/MFLCoreDataEditorProjectLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/MFLCoreDataEditorProjectLoader.h -------------------------------------------------------------------------------- /CoreDataUtil/Utils/MFLCoreDataEditorProjectLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/MFLCoreDataEditorProjectLoader.m -------------------------------------------------------------------------------- /CoreDataUtil/Utils/MFLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/MFLUtils.h -------------------------------------------------------------------------------- /CoreDataUtil/Utils/MFLUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/MFLUtils.m -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDate+TimeAgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDate+TimeAgo.h -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDate+TimeAgo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDate+TimeAgo.m -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ar.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ar.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/bg.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/bg.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/cs.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/cs.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/da.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/da.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/de.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/de.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/en.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/en.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/es.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/es.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/fi.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/fi.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/fr.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/fr.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/gre.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/gre.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/he.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/he.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/hu.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/hu.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/is.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/is.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/it.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/it.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ja.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ja.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ko.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ko.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/lv.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/lv.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/nb.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/nb.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/nl.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/nl.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/pl.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/pl.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/pt-PT.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/pt-PT.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/pt.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/pt.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ro.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ro.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ru.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/ru.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/sq.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/sq.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/sv.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/sv.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/th.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/th.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/tr.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/tr.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/uk.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/uk.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/vi.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/vi.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/zh-Hans.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/zh-Hans.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/zh-Hant.lproj/NSDateTimeAgo.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/Utils/extensions/timeago/NSDateTimeAgo.bundle/zh-Hant.lproj/NSDateTimeAgo.strings -------------------------------------------------------------------------------- /CoreDataUtil/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /CoreDataUtil/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreDataUtil/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /CoreDataUtil/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/main.m -------------------------------------------------------------------------------- /CoreDataUtil/paintCode/CoreDataUtilityStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/paintCode/CoreDataUtilityStyle.h -------------------------------------------------------------------------------- /CoreDataUtil/paintCode/CoreDataUtilityStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/paintCode/CoreDataUtilityStyle.m -------------------------------------------------------------------------------- /CoreDataUtil/refreshButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/refreshButton.png -------------------------------------------------------------------------------- /CoreDataUtil/simulatorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtil/simulatorIcon.png -------------------------------------------------------------------------------- /CoreDataUtilImporter/CoreDataUtilImporter-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/CoreDataUtilImporter-Info.plist -------------------------------------------------------------------------------- /CoreDataUtilImporter/CoreDataUtilImporter-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/CoreDataUtilImporter-Prefix.pch -------------------------------------------------------------------------------- /CoreDataUtilImporter/GetMetadataForFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/GetMetadataForFile.m -------------------------------------------------------------------------------- /CoreDataUtilImporter/Importer Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/Importer Read Me.txt -------------------------------------------------------------------------------- /CoreDataUtilImporter/MySpotlightImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/MySpotlightImporter.h -------------------------------------------------------------------------------- /CoreDataUtilImporter/MySpotlightImporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/MySpotlightImporter.m -------------------------------------------------------------------------------- /CoreDataUtilImporter/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CoreDataUtilImporter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilImporter/main.c -------------------------------------------------------------------------------- /CoreDataUtilTests/CoreDataUtilTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilTests/CoreDataUtilTests-Info.plist -------------------------------------------------------------------------------- /CoreDataUtilTests/CoreDataUtilTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilTests/CoreDataUtilTests.h -------------------------------------------------------------------------------- /CoreDataUtilTests/CoreDataUtilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/CoreDataUtilTests/CoreDataUtilTests.m -------------------------------------------------------------------------------- /CoreDataUtilTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/README.md -------------------------------------------------------------------------------- /TestFiles/SingleEntitySingleAttribut.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/TestFiles/SingleEntitySingleAttribut.mom -------------------------------------------------------------------------------- /TestFiles/SingleEntitySingleAttribut.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/TestFiles/SingleEntitySingleAttribut.sqlite -------------------------------------------------------------------------------- /TestFiles/fetchRequest.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/TestFiles/fetchRequest.mom -------------------------------------------------------------------------------- /TestFiles/fetchRequest.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/TestFiles/fetchRequest.sqlite -------------------------------------------------------------------------------- /TestFiles/fetchRequestorig.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/TestFiles/fetchRequestorig.sqlite -------------------------------------------------------------------------------- /docs/CoreDataUtilityGraphics.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/docs/CoreDataUtilityGraphics.pcvd -------------------------------------------------------------------------------- /screenShots/EverNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/screenShots/EverNote.png -------------------------------------------------------------------------------- /screenShots/newProj_Files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/screenShots/newProj_Files.png -------------------------------------------------------------------------------- /screenShots/newProj_osxApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/screenShots/newProj_osxApp.png -------------------------------------------------------------------------------- /tools/bin/createCoreDataProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yepher/CoreDataUtility/HEAD/tools/bin/createCoreDataProject.sh --------------------------------------------------------------------------------