blob: 197e6689aacbf68a56232d70ac1cd32594f4420a [file] [log] [blame]
{
"name": "RxCoreData",
"version": "1.0.0",
"summary": "RxSwift extensions for Core Data",
"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)```",
"homepage": "https://github.com/RxSwiftCommunity/RxCoreData",
"license": {
"type": "MIT",
"file": "LICENSE.md"
},
"authors": {
"Scott Gardner": "scott.gardner@mac.com",
"RxSwift Community": "community@rxswift.org"
},
"source": {
"git": "https://github.com/RxSwiftCommunity/RxCoreData.git",
"tag": "1.0.0"
},
"social_media_url": "https://twitter.com/scotteg",
"platforms": {
"ios": "9.3",
"osx": "10.12",
"watchos": "3.0",
"tvos": "9.0"
},
"source_files": "Sources/**/*.{swift}",
"exclude_files": [
"Sources/*.{plist}",
"Sources/**/*.{plist}"
],
"frameworks": "CoreData",
"swift_version": "5.0",
"dependencies": {
"RxSwift": [
"~> 5.0"
],
"RxCocoa": [
"~> 5.0"
]
}
}