4 "summary": "RxSwift extensions for Core Data",
5 "description": "Provides types and extensions for working with Core Data. For example, you can create and hook up a Core Data request to a table view with just a few lines of code:\n```let fetchRequest = NSFetchRequest(entityName: \"User\")\n\nfetchRequest.predicate = NSPredicate(query: \"username CONTAINS[cd] %@\", searchTerm)\n\nfetchRequest.sortDescriptors = [NSSortDescriptor(key: \"username\", ascending: true)]\n\nmanagedObjectContext.rx_entities(fetchRequest)\n.bindTo(tableView.rx_itemsWithDataSource(animatedDataSource))\n.addDisposableTo(disposeBag)```",
6 "homepage": "https://github.com/RxSwiftCommunity/RxCoreData",
12 "Scott Gardner": "scott.gardner@mac.com",
13 "RxSwift Community": "community@rxswift.org"
16 "git": "https://github.com/RxSwiftCommunity/RxCoreData.git",
19 "social_media_url": "https://twitter.com/scotteg",
26 "source_files": "Sources/**/*.{swift}",
29 "Sources/**/*.{plist}"
31 "frameworks": "CoreData",
32 "swift_versions": "5.0",
41 "swift_version": "5.0"