gitextract_mfzjlkfi/ ├── .gitignore ├── .gitmodules ├── .swift-version ├── CHANGELOG.md ├── Cartfile ├── Documentation/ │ └── html/ │ ├── Blocks/ │ │ ├── RBQChangeNotificationBlock.html │ │ └── RBQNotificationBlock.html │ ├── Categories/ │ │ ├── RLMArray+Utilities.html │ │ ├── RLMObject+Notifications.html │ │ ├── RLMObject+SafeObject.html │ │ ├── RLMObject+Utilities.html │ │ └── RLMRealm+Notifications.html │ ├── Classes/ │ │ ├── RBQEntityChangesObject.html │ │ ├── RBQFetchRequest.html │ │ ├── RBQFetchedResultsController.html │ │ ├── RBQFetchedResultsSectionInfo.html │ │ ├── RBQRealmChangeLogger.html │ │ ├── RBQRealmNotificationManager.html │ │ └── RBQSafeRealmObject.html │ ├── Protocols/ │ │ └── RBQFetchedResultsControllerDelegate.html │ ├── css/ │ │ ├── scss/ │ │ │ ├── _index.scss │ │ │ ├── _layout.scss │ │ │ ├── _normalize.scss │ │ │ ├── _object.scss │ │ │ ├── _print.scss │ │ │ ├── _variables.scss │ │ │ ├── _xcode.scss │ │ │ └── style.scss │ │ ├── style.css │ │ ├── styles.css │ │ └── stylesPrint.css │ ├── hierarchy.html │ ├── index.html │ └── js/ │ └── script.js ├── Examples/ │ ├── ObjC/ │ │ ├── Podfile │ │ ├── RBQFetchedResultsControllerExample/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── ExampleTableViewController.h │ │ │ ├── ExampleTableViewController.m │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── TestObject.h │ │ │ ├── TestObject.m │ │ │ └── main.m │ │ ├── RBQFetchedResultsControllerExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── RBQFetchedResultsControllerExampleTests/ │ │ ├── Info.plist │ │ ├── RBQFetchRequestInMemoryTests.m │ │ ├── RBQFetchRequestTests.m │ │ ├── RBQFetchedResultsControllerDelegateTests.m │ │ ├── RBQFetchedResultsControllerTests.m │ │ ├── RBQFetchedResultsControllerWithSectionsDelegateTests.m │ │ ├── RBQFetchedResultsSectionInfoTests.m │ │ ├── RBQSafeRealmObjectTests.m │ │ ├── RBQTestCase.h │ │ └── RBQTestCase.m │ ├── ObjC-carthage/ │ │ ├── RBQFetchedResultsControllerExample/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── ExampleTableViewController.h │ │ │ ├── ExampleTableViewController.m │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── TestObject.h │ │ │ ├── TestObject.m │ │ │ └── main.m │ │ ├── RBQFetchedResultsControllerExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── RBQFetchedResultsControllerExampleTests/ │ │ └── Info.plist │ ├── ObjC-cocoapods/ │ │ ├── Podfile │ │ ├── RBQFetchedResultsControllerExample/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── ExampleTableViewController.h │ │ │ ├── ExampleTableViewController.m │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── TestObject.h │ │ │ ├── TestObject.m │ │ │ └── main.m │ │ ├── RBQFetchedResultsControllerExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── RBQFetchedResultsControllerExampleTests/ │ │ ├── Info.plist │ │ ├── RBQEntityChangesObjectTests.m │ │ ├── RBQFetchRequestInMemoryTests.m │ │ ├── RBQFetchRequestTests.m │ │ ├── RBQFetchedResultsControllerDelegateTests.m │ │ ├── RBQFetchedResultsControllerTests.m │ │ ├── RBQFetchedResultsSectionInfoTests.m │ │ ├── RBQRealmChangeLoggerTests.m │ │ ├── RBQSafeRealmObjectTests.m │ │ ├── RBQTestCase.h │ │ └── RBQTestCase.m │ ├── Swift/ │ │ ├── .swift-version │ │ ├── Podfile │ │ ├── RBQFRCSwiftExample/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── MainTableViewController.swift │ │ │ └── RBQFRCSwift-BridgingHeader.h │ │ ├── RBQFRCSwiftExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── RBQFRCSwiftExampleTests/ │ │ ├── Info.plist │ │ └── RBQFRCSwiftExampleTests.swift │ ├── Swift-carthage/ │ │ ├── RBQFRCSwiftExample/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets/ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── MainTableViewController.swift │ │ ├── RBQFRCSwiftExample.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── RBQFRCSwiftExampleTests/ │ │ ├── Info.plist │ │ └── RBQFRCSwiftExampleTests.swift │ └── Swift-cocoapods/ │ ├── .swift-version │ ├── Podfile │ ├── RBQFRCSwiftExample/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MainTableViewController.swift │ │ └── RBQFRCSwift-BridgingHeader.h │ ├── RBQFRCSwiftExample.xcodeproj/ │ │ └── project.pbxproj │ └── RBQFRCSwiftExampleTests/ │ ├── Info.plist │ └── RBQFRCSwiftExampleTests.swift ├── LICENSE ├── RBQFetchedResultsController/ │ ├── Info.plist │ ├── ModuleMapFile │ ├── RBQFRC.h │ ├── RBQFetchedResultsControllerTests/ │ │ └── Info.plist │ └── Source/ │ ├── CacheObjects/ │ │ ├── RBQControllerCacheObject.h │ │ ├── RBQControllerCacheObject.m │ │ ├── RBQObjectCacheObject.h │ │ ├── RBQObjectCacheObject.m │ │ ├── RBQSectionCacheObject.h │ │ └── RBQSectionCacheObject.m │ ├── RBQFetchRequest.h │ ├── RBQFetchRequest.m │ ├── RBQFetchedResultsController.h │ ├── RBQFetchedResultsController.m │ └── Swift/ │ ├── FetchRequest.swift │ ├── FetchedResultsController.swift │ ├── Info.plist │ ├── RBQFRCSwift-BridgingHeader.h │ ├── SwiftFetchedResultsController.h │ └── Utilities.swift ├── RBQFetchedResultsController.podspec ├── RBQFetchedResultsController.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── RBQFetchedResultsController.xcscheme │ └── SwiftFetchedResultsController.xcscheme ├── README.md └── SwiftFetchedResultsController.podspec