├── .gitignore ├── .swift-version ├── .travis.yml ├── Cartfile ├── Cartfile.resolved ├── LICENSE.md ├── README.md ├── RxCoreData.podspec ├── RxCoreData.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── RxCoreData iOS.xcscheme │ ├── RxCoreData macOS.xcscheme │ ├── RxCoreData tvOS.xcscheme │ └── RxCoreData watchOS.xcscheme ├── RxCoreData.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── RxCoreData ├── Info.plist └── RxCoreData.h ├── RxCoreDataExample ├── Differentiator.framework │ ├── Differentiator │ ├── Headers │ │ ├── Differentiator-Swift.h │ │ └── Differentiator.h │ ├── Info.plist │ └── Modules │ │ ├── Differentiator.swiftmodule │ │ ├── arm.swiftdoc │ │ ├── arm.swiftmodule │ │ ├── arm64.swiftdoc │ │ ├── arm64.swiftmodule │ │ ├── armv7.swiftdoc │ │ ├── armv7.swiftmodule │ │ ├── i386.swiftdoc │ │ ├── i386.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ │ └── module.modulemap ├── Podfile ├── Podfile.lock ├── RxCoreDateExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── RxCoreDateExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── RxCoreDateExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Event+Extensions.swift │ ├── Event.swift │ ├── Info.plist │ ├── Model.xcdatamodeld │ │ └── Model.xcdatamodel │ │ │ └── contents │ └── ViewController.swift ├── RxCoreDateExampleTests │ ├── Info.plist │ └── RxCoreDateExampleTests.swift ├── RxDataSources.framework │ ├── CHANGELOG.md │ ├── Differentiator.podspec │ ├── Headers │ │ ├── RxDataSources-Swift.h │ │ └── RxDataSources.h │ ├── Info.plist │ ├── Modules │ │ ├── RxDataSources.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── armv7.swiftdoc │ │ │ ├── armv7.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ ├── i386.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ └── RxDataSources └── RxRelay.framework │ ├── Headers │ └── RxRelay-Swift.h │ ├── Info.plist │ ├── Modules │ ├── RxRelay.swiftmodule │ │ ├── arm.swiftdoc │ │ ├── arm.swiftmodule │ │ ├── arm64.swiftdoc │ │ ├── arm64.swiftmodule │ │ ├── armv7.swiftdoc │ │ ├── armv7.swiftmodule │ │ ├── i386.swiftdoc │ │ ├── i386.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ └── module.modulemap │ └── RxRelay └── Sources ├── .gitkeep ├── FetchedResultsControllerControllerEntityObserver.swift ├── FetchedResultsControllerSectionObserver.swift ├── NSManagedObjectContext+Rx.swift └── Persistable.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/README.md -------------------------------------------------------------------------------- /RxCoreData.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.podspec -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData iOS.xcscheme -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData macOS.xcscheme -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData tvOS.xcscheme -------------------------------------------------------------------------------- /RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcodeproj/xcshareddata/xcschemes/RxCoreData watchOS.xcscheme -------------------------------------------------------------------------------- /RxCoreData.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxCoreData.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxCoreData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData/Info.plist -------------------------------------------------------------------------------- /RxCoreData/RxCoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreData/RxCoreData.h -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Differentiator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Differentiator -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Headers/Differentiator-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Headers/Differentiator-Swift.h -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Headers/Differentiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Headers/Differentiator.h -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Info.plist -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/armv7.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/armv7.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/armv7.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/armv7.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/Differentiator.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/Differentiator.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Differentiator.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RxCoreDataExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Podfile -------------------------------------------------------------------------------- /RxCoreDataExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/Podfile.lock -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/AppDelegate.swift -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Event+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Event+Extensions.swift -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Event.swift -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Info.plist -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExample/ViewController.swift -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExampleTests/Info.plist -------------------------------------------------------------------------------- /RxCoreDataExample/RxCoreDateExampleTests/RxCoreDateExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxCoreDateExampleTests/RxCoreDateExampleTests.swift -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/CHANGELOG.md -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Differentiator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Differentiator.podspec -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Headers/RxDataSources-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Headers/RxDataSources-Swift.h -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Headers/RxDataSources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Headers/RxDataSources.h -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Info.plist -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/armv7.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/armv7.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/armv7.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/armv7.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/RxDataSources.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RxCoreDataExample/RxDataSources.framework/RxDataSources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxDataSources.framework/RxDataSources -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Headers/RxRelay-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Headers/RxRelay-Swift.h -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Info.plist -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/armv7.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/armv7.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/armv7.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/armv7.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/RxRelay.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /RxCoreDataExample/RxRelay.framework/RxRelay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/RxCoreDataExample/RxRelay.framework/RxRelay -------------------------------------------------------------------------------- /Sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/FetchedResultsControllerControllerEntityObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/Sources/FetchedResultsControllerControllerEntityObserver.swift -------------------------------------------------------------------------------- /Sources/FetchedResultsControllerSectionObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/Sources/FetchedResultsControllerSectionObserver.swift -------------------------------------------------------------------------------- /Sources/NSManagedObjectContext+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/Sources/NSManagedObjectContext+Rx.swift -------------------------------------------------------------------------------- /Sources/Persistable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RxSwiftCommunity/RxCoreData/HEAD/Sources/Persistable.swift --------------------------------------------------------------------------------