├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── ConsistencyManager.xcscheme ├── .travis.yml ├── ConsistencyManager.podspec ├── ConsistencyManager ├── ConsistencyManager.swift ├── DataStructures │ ├── Array+Weak.swift │ ├── BatchListener.swift │ ├── BatchUpdateModel.swift │ ├── ModelChange.swift │ ├── ModelUpdates.swift │ ├── TypeErasedWeakHolders.swift │ ├── WeakArray.swift │ ├── WeakBox.swift │ └── WeakHolder.swift ├── Helpers │ ├── CollectionHelpers.swift │ └── ErrorManager.swift └── Protocols │ ├── ConsistencyManagerDelegate.swift │ ├── ConsistencyManagerListener.swift │ ├── ConsistencyManagerModel.swift │ └── ConsistencyManagerUpdatesListener.swift ├── ConsistencyManagerTests ├── BatchListenerTest.swift ├── BatchUpdateTests.swift ├── ClearAndCancelTests.swift ├── ContextTests.swift ├── DataStructureTests │ ├── ModelChangeTests.swift │ └── WeakArrayTests.swift ├── DeleteTests.swift ├── ErrorTests.swift ├── Extensions │ └── XCTestCase+WaitForBool.swift ├── GarbageCollectionTests.swift ├── HelperClasses │ ├── ConsistencyManagerTestCase.swift │ ├── ProjectionTestModel.swift │ ├── ProjectionTreeModel.swift │ ├── TestListener.swift │ ├── TestModel.swift │ ├── TestModelGenerator.swift │ ├── TestRequiredModel.swift │ └── TestUpdatesListener.swift ├── ListenerTests.swift ├── MemoryWarningTests.swift ├── ModelUpdatesListenerTests.swift ├── ModelUpdatesTests.swift ├── PauseListenerTests.swift ├── ProjectionTests.swift ├── RaceConditionsTests.swift ├── RemoveListenerTests.swift ├── ShortCurcuitTests.swift ├── UpdateFlowTests.swift ├── UpdateOrderingTests.swift └── UpdateTests.swift ├── LICENSE ├── NOTICE ├── Package.swift ├── README.md ├── SampleApp ├── Base.lproj │ └── LaunchScreen.xib ├── ConsistencyManagerDemo-tvOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── MainViewController.swift │ ├── TVDetailViewController.swift │ ├── TableViewCell.swift │ └── TableViewCell.xib ├── ConsistencyManagerDemo-tvOSTests │ └── Info.plist ├── ConsistencyManagerDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ConsistencyManagerDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ConsistencyManagerDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Cells │ │ ├── TableViewCell.swift │ │ └── TableViewCell.xib │ ├── Info.plist │ ├── Models │ │ ├── StreamModel.swift │ │ └── UpdateModel.swift │ ├── Network │ │ ├── NetworkStack.swift │ │ └── UpdateHelpers.swift │ └── ViewControllers │ │ ├── DetailViewController.swift │ │ ├── DetailViewController.xib │ │ ├── MainViewController.swift │ │ └── MainViewController.xib ├── ConsistencyManagerDemoTests │ ├── Info.plist │ └── PerformanceTests.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── ConsistencyManager.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── ConsistencyManager-iOS │ ├── ConsistencyManager-iOS-dummy.m │ ├── ConsistencyManager-iOS-prefix.pch │ ├── ConsistencyManager-iOS-umbrella.h │ ├── ConsistencyManager-iOS.modulemap │ ├── ConsistencyManager-iOS.xcconfig │ └── Info.plist │ ├── ConsistencyManager-tvOS │ ├── ConsistencyManager-tvOS-dummy.m │ ├── ConsistencyManager-tvOS-prefix.pch │ ├── ConsistencyManager-tvOS-umbrella.h │ ├── ConsistencyManager-tvOS.modulemap │ ├── ConsistencyManager-tvOS.xcconfig │ └── Info.plist │ ├── Pods-ConsistencyManagerDemo-tvOS │ ├── Info.plist │ ├── Pods-ConsistencyManagerDemo-tvOS-acknowledgements.markdown │ ├── Pods-ConsistencyManagerDemo-tvOS-acknowledgements.plist │ ├── Pods-ConsistencyManagerDemo-tvOS-dummy.m │ ├── Pods-ConsistencyManagerDemo-tvOS-frameworks.sh │ ├── Pods-ConsistencyManagerDemo-tvOS-resources.sh │ ├── Pods-ConsistencyManagerDemo-tvOS-umbrella.h │ ├── Pods-ConsistencyManagerDemo-tvOS.debug.xcconfig │ ├── Pods-ConsistencyManagerDemo-tvOS.modulemap │ └── Pods-ConsistencyManagerDemo-tvOS.release.xcconfig │ ├── Pods-ConsistencyManagerDemo-tvOSTests │ ├── Info.plist │ ├── Pods-ConsistencyManagerDemo-tvOSTests-acknowledgements.markdown │ ├── Pods-ConsistencyManagerDemo-tvOSTests-acknowledgements.plist │ ├── Pods-ConsistencyManagerDemo-tvOSTests-dummy.m │ ├── Pods-ConsistencyManagerDemo-tvOSTests-frameworks.sh │ ├── Pods-ConsistencyManagerDemo-tvOSTests-resources.sh │ ├── Pods-ConsistencyManagerDemo-tvOSTests-umbrella.h │ ├── Pods-ConsistencyManagerDemo-tvOSTests.debug.xcconfig │ ├── Pods-ConsistencyManagerDemo-tvOSTests.modulemap │ └── Pods-ConsistencyManagerDemo-tvOSTests.release.xcconfig │ ├── Pods-ConsistencyManagerDemo │ ├── Info.plist │ ├── Pods-ConsistencyManagerDemo-acknowledgements.markdown │ ├── Pods-ConsistencyManagerDemo-acknowledgements.plist │ ├── Pods-ConsistencyManagerDemo-dummy.m │ ├── Pods-ConsistencyManagerDemo-frameworks.sh │ ├── Pods-ConsistencyManagerDemo-resources.sh │ ├── Pods-ConsistencyManagerDemo-umbrella.h │ ├── Pods-ConsistencyManagerDemo.debug.xcconfig │ ├── Pods-ConsistencyManagerDemo.modulemap │ └── Pods-ConsistencyManagerDemo.release.xcconfig │ └── Pods-ConsistencyManagerDemoTests │ ├── Info.plist │ ├── Pods-ConsistencyManagerDemoTests-acknowledgements.markdown │ ├── Pods-ConsistencyManagerDemoTests-acknowledgements.plist │ ├── Pods-ConsistencyManagerDemoTests-dummy.m │ ├── Pods-ConsistencyManagerDemoTests-frameworks.sh │ ├── Pods-ConsistencyManagerDemoTests-resources.sh │ ├── Pods-ConsistencyManagerDemoTests-umbrella.h │ ├── Pods-ConsistencyManagerDemoTests.debug.xcconfig │ ├── Pods-ConsistencyManagerDemoTests.modulemap │ └── Pods-ConsistencyManagerDemoTests.release.xcconfig └── docs ├── Makefile ├── README ├── bin └── update_theme.sh ├── conf.py ├── images ├── dataFlow.png ├── nodeUpdate.png ├── treeOriginal.png └── treeUpdate.png ├── index.rst └── pages ├── 010_consistencyManager.rst ├── 020_modelRequirements.rst ├── 030_listeners.rst ├── 040_dataFlow.rst ├── 050_api.rst ├── 055_projections.rst ├── 060_otherFeatures.rst ├── 070_collections.rst ├── 080_memoryUsage.rst ├── 090_otherOptions.rst ├── 100_threading.rst ├── 110_errorsAndDebugging.rst ├── 120_setup.rst ├── 130_testing.rst ├── 140_swift.rst ├── 150_immutability.rst ├── 160_FAQ.rst ├── 170_acknoledgements.rst └── 180_futurePlans.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/ConsistencyManager.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/ConsistencyManager.xcscheme -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/.travis.yml -------------------------------------------------------------------------------- /ConsistencyManager.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager.podspec -------------------------------------------------------------------------------- /ConsistencyManager/ConsistencyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/ConsistencyManager.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/Array+Weak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/Array+Weak.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/BatchListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/BatchListener.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/BatchUpdateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/BatchUpdateModel.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/ModelChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/ModelChange.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/ModelUpdates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/ModelUpdates.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/TypeErasedWeakHolders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/TypeErasedWeakHolders.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/WeakArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/WeakArray.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/WeakBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/WeakBox.swift -------------------------------------------------------------------------------- /ConsistencyManager/DataStructures/WeakHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/DataStructures/WeakHolder.swift -------------------------------------------------------------------------------- /ConsistencyManager/Helpers/CollectionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/Helpers/CollectionHelpers.swift -------------------------------------------------------------------------------- /ConsistencyManager/Helpers/ErrorManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/Helpers/ErrorManager.swift -------------------------------------------------------------------------------- /ConsistencyManager/Protocols/ConsistencyManagerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/Protocols/ConsistencyManagerDelegate.swift -------------------------------------------------------------------------------- /ConsistencyManager/Protocols/ConsistencyManagerListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/Protocols/ConsistencyManagerListener.swift -------------------------------------------------------------------------------- /ConsistencyManager/Protocols/ConsistencyManagerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/Protocols/ConsistencyManagerModel.swift -------------------------------------------------------------------------------- /ConsistencyManager/Protocols/ConsistencyManagerUpdatesListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManager/Protocols/ConsistencyManagerUpdatesListener.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/BatchListenerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/BatchListenerTest.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/BatchUpdateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/BatchUpdateTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ClearAndCancelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ClearAndCancelTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ContextTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/DataStructureTests/ModelChangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/DataStructureTests/ModelChangeTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/DataStructureTests/WeakArrayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/DataStructureTests/WeakArrayTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/DeleteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/DeleteTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ErrorTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/Extensions/XCTestCase+WaitForBool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/Extensions/XCTestCase+WaitForBool.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/GarbageCollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/GarbageCollectionTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/ConsistencyManagerTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/ConsistencyManagerTestCase.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/ProjectionTestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/ProjectionTestModel.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/ProjectionTreeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/ProjectionTreeModel.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/TestListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/TestListener.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/TestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/TestModel.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/TestModelGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/TestModelGenerator.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/TestRequiredModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/TestRequiredModel.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/HelperClasses/TestUpdatesListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/HelperClasses/TestUpdatesListener.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ListenerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ListenerTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/MemoryWarningTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/MemoryWarningTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ModelUpdatesListenerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ModelUpdatesListenerTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ModelUpdatesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ModelUpdatesTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/PauseListenerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/PauseListenerTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ProjectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ProjectionTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/RaceConditionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/RaceConditionsTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/RemoveListenerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/RemoveListenerTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/ShortCurcuitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/ShortCurcuitTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/UpdateFlowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/UpdateFlowTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/UpdateOrderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/UpdateOrderingTests.swift -------------------------------------------------------------------------------- /ConsistencyManagerTests/UpdateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/ConsistencyManagerTests/UpdateTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/NOTICE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/README.md -------------------------------------------------------------------------------- /SampleApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/MainViewController.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/TVDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/TVDetailViewController.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/TableViewCell.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOS/TableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOS/TableViewCell.xib -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Cells/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Cells/TableViewCell.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Cells/TableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Cells/TableViewCell.xib -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Info.plist -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Models/StreamModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Models/StreamModel.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Models/UpdateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Models/UpdateModel.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Network/NetworkStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Network/NetworkStack.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/Network/UpdateHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/Network/UpdateHelpers.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/ViewControllers/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/ViewControllers/DetailViewController.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/ViewControllers/DetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/ViewControllers/DetailViewController.xib -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/ViewControllers/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/ViewControllers/MainViewController.swift -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemo/ViewControllers/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemo/ViewControllers/MainViewController.xib -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemoTests/Info.plist -------------------------------------------------------------------------------- /SampleApp/ConsistencyManagerDemoTests/PerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/ConsistencyManagerDemoTests/PerformanceTests.swift -------------------------------------------------------------------------------- /SampleApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Podfile -------------------------------------------------------------------------------- /SampleApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Podfile.lock -------------------------------------------------------------------------------- /SampleApp/Pods/Local Podspecs/ConsistencyManager.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Local Podspecs/ConsistencyManager.podspec.json -------------------------------------------------------------------------------- /SampleApp/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Manifest.lock -------------------------------------------------------------------------------- /SampleApp/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS-dummy.m -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS-prefix.pch -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS-umbrella.h -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS.modulemap -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/ConsistencyManager-iOS.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-iOS/Info.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS-dummy.m -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS-prefix.pch -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS-umbrella.h -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS.modulemap -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/ConsistencyManager-tvOS.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/ConsistencyManager-tvOS/Info.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-acknowledgements.markdown -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-acknowledgements.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-dummy.m -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-frameworks.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-resources.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS-umbrella.h -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS.debug.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS.modulemap -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOS/Pods-ConsistencyManagerDemo-tvOS.release.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-acknowledgements.markdown -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-acknowledgements.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-dummy.m -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-frameworks.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-resources.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests-umbrella.h -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests.debug.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests.modulemap -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo-tvOSTests/Pods-ConsistencyManagerDemo-tvOSTests.release.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Info.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-acknowledgements.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-dummy.m -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-frameworks.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-resources.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo-umbrella.h -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo.debug.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo.modulemap -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemo/Pods-ConsistencyManagerDemo.release.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Info.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-acknowledgements.markdown -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-acknowledgements.plist -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-dummy.m -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-frameworks.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-resources.sh -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests-umbrella.h -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests.debug.xcconfig -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests.modulemap -------------------------------------------------------------------------------- /SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/SampleApp/Pods/Target Support Files/Pods-ConsistencyManagerDemoTests/Pods-ConsistencyManagerDemoTests.release.xcconfig -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/README -------------------------------------------------------------------------------- /docs/bin/update_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/bin/update_theme.sh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/dataFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/images/dataFlow.png -------------------------------------------------------------------------------- /docs/images/nodeUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/images/nodeUpdate.png -------------------------------------------------------------------------------- /docs/images/treeOriginal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/images/treeOriginal.png -------------------------------------------------------------------------------- /docs/images/treeUpdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/images/treeUpdate.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/pages/010_consistencyManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/010_consistencyManager.rst -------------------------------------------------------------------------------- /docs/pages/020_modelRequirements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/020_modelRequirements.rst -------------------------------------------------------------------------------- /docs/pages/030_listeners.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/030_listeners.rst -------------------------------------------------------------------------------- /docs/pages/040_dataFlow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/040_dataFlow.rst -------------------------------------------------------------------------------- /docs/pages/050_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/050_api.rst -------------------------------------------------------------------------------- /docs/pages/055_projections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/055_projections.rst -------------------------------------------------------------------------------- /docs/pages/060_otherFeatures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/060_otherFeatures.rst -------------------------------------------------------------------------------- /docs/pages/070_collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/070_collections.rst -------------------------------------------------------------------------------- /docs/pages/080_memoryUsage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/080_memoryUsage.rst -------------------------------------------------------------------------------- /docs/pages/090_otherOptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/090_otherOptions.rst -------------------------------------------------------------------------------- /docs/pages/100_threading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/100_threading.rst -------------------------------------------------------------------------------- /docs/pages/110_errorsAndDebugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/110_errorsAndDebugging.rst -------------------------------------------------------------------------------- /docs/pages/120_setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/120_setup.rst -------------------------------------------------------------------------------- /docs/pages/130_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/130_testing.rst -------------------------------------------------------------------------------- /docs/pages/140_swift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/140_swift.rst -------------------------------------------------------------------------------- /docs/pages/150_immutability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/150_immutability.rst -------------------------------------------------------------------------------- /docs/pages/160_FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/160_FAQ.rst -------------------------------------------------------------------------------- /docs/pages/170_acknoledgements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/170_acknoledgements.rst -------------------------------------------------------------------------------- /docs/pages/180_futurePlans.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plivesey/ConsistencyManager/HEAD/docs/pages/180_futurePlans.rst --------------------------------------------------------------------------------