├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .swiftformat ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ ├── CoreDataEvolution-Package.xcscheme │ ├── CoreDataEvolution.xcscheme │ └── CoreDataEvolutionMacros.xcscheme ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── CoreDataEvolution │ ├── CoreDataEvolution.docc │ │ └── CoreDataEvolution.md │ ├── Macros.swift │ ├── MainModelActor.swift │ ├── NSMainModelActor.swift │ ├── NSModelActor.swift │ ├── NSModelObjectContextExecutor.swift │ └── module.swift ├── CoreDataEvolutionClient │ └── main.swift └── CoreDataEvolutionMacros │ ├── Helper.swift │ ├── NSMainModelActorMacro.swift │ ├── NSModelActorMacro.swift │ └── Plugins.swift └── Tests └── CoreDataEvolutionTests ├── CoreDataEvolution-Package.xctestplan ├── Helper ├── Container.swift ├── DataHandler.swift ├── Item.swift └── MainHandler.swift ├── NSModelActorTests.swift └── Resources └── TestModel.xcdatamodeld └── TestModel.xcdatamodel └── contents /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/CoreDataEvolution-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/CoreDataEvolution-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/CoreDataEvolution.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/CoreDataEvolution.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/CoreDataEvolutionMacros.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/CoreDataEvolutionMacros.xcscheme -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/CoreDataEvolution.docc/CoreDataEvolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/CoreDataEvolution.docc/CoreDataEvolution.md -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/Macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/Macros.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/MainModelActor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/MainModelActor.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/NSMainModelActor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/NSMainModelActor.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/NSModelActor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/NSModelActor.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/NSModelObjectContextExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/NSModelObjectContextExecutor.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolution/module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolution/module.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolutionClient/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolutionClient/main.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolutionMacros/Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolutionMacros/Helper.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolutionMacros/NSMainModelActorMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolutionMacros/NSMainModelActorMacro.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolutionMacros/NSModelActorMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolutionMacros/NSModelActorMacro.swift -------------------------------------------------------------------------------- /Sources/CoreDataEvolutionMacros/Plugins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Sources/CoreDataEvolutionMacros/Plugins.swift -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/CoreDataEvolution-Package.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/CoreDataEvolution-Package.xctestplan -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/Helper/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/Helper/Container.swift -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/Helper/DataHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/Helper/DataHandler.swift -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/Helper/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/Helper/Item.swift -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/Helper/MainHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/Helper/MainHandler.swift -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/NSModelActorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/NSModelActorTests.swift -------------------------------------------------------------------------------- /Tests/CoreDataEvolutionTests/Resources/TestModel.xcdatamodeld/TestModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatbobman/CoreDataEvolution/HEAD/Tests/CoreDataEvolutionTests/Resources/TestModel.xcdatamodeld/TestModel.xcdatamodel/contents --------------------------------------------------------------------------------