├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Combine-Realm.podspec ├── CombineRealm.png ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Models.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── CombineRealm │ ├── Add.swift │ ├── Delete.swift │ └── Publishers.swift └── Tests ├── CombineRealmTests ├── CombineRealmLinkingObjectTests.swift ├── CombineRealmListTests.swift ├── CombineRealmObjectTests.swift ├── CombineRealmResultsTests.swift ├── CombineRealmTests.swift ├── CombineTests.swift ├── Models.swift ├── Utilities.swift └── XCTestManifests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Combine-Realm.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Combine-Realm.podspec -------------------------------------------------------------------------------- /CombineRealm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/CombineRealm.png -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/Models.swift -------------------------------------------------------------------------------- /Example/Example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CombineRealm/Add.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Sources/CombineRealm/Add.swift -------------------------------------------------------------------------------- /Sources/CombineRealm/Delete.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Sources/CombineRealm/Delete.swift -------------------------------------------------------------------------------- /Sources/CombineRealm/Publishers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Sources/CombineRealm/Publishers.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/CombineRealmLinkingObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/CombineRealmLinkingObjectTests.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/CombineRealmListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/CombineRealmListTests.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/CombineRealmObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/CombineRealmObjectTests.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/CombineRealmResultsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/CombineRealmResultsTests.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/CombineRealmTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/CombineRealmTests.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/CombineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/CombineTests.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/Models.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/Utilities.swift -------------------------------------------------------------------------------- /Tests/CombineRealmTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/CombineRealmTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombineCommunity/CombineRealm/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------