[Add] DocumentReaderFullRFIDStage 7.5.10860
[CocoaPods.git] / Specs / 8 / e / 9 / RxCoreData / 1.0.1 / RxCoreData.podspec.json
blobe623d98e75c2779f3ac00be8537e94efc1f636fe
2   "name": "RxCoreData",
3   "version": "1.0.1",
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",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE.md"
10   },
11   "authors": {
12     "Scott Gardner": "scott.gardner@mac.com",
13     "RxSwift Community": "community@rxswift.org"
14   },
15   "source": {
16     "git": "https://github.com/RxSwiftCommunity/RxCoreData.git",
17     "tag": "1.0.1"
18   },
19   "social_media_url": "https://twitter.com/scotteg",
20   "platforms": {
21     "ios": "9.3",
22     "osx": "10.12",
23     "watchos": "3.0",
24     "tvos": "9.0"
25   },
26   "source_files": "Sources/**/*.{swift}",
27   "exclude_files": [
28     "Sources/*.{plist}",
29     "Sources/**/*.{plist}"
30   ],
31   "frameworks": "CoreData",
32   "swift_versions": "5.0",
33   "dependencies": {
34     "RxSwift": [
35       "~> 6.0"
36     ],
37     "RxCocoa": [
38       "~> 6.0"
39     ]
40   },
41   "swift_version": "5.0"