[Add] DocumentReaderFullRFIDStage 7.5.10860
[CocoaPods.git] / Specs / 8 / e / 9 / RxCoreData / 0.3.1 / RxCoreData.podspec.json
blob7bd6b92d3a4e5b30436d4c72b43132fb4da98bd6
2   "name": "RxCoreData",
3   "version": "0.3.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   },
14   "source": {
15     "git": "https://github.com/RxSwiftCommunity/RxCoreData.git",
16     "tag": "0.3.1"
17   },
18   "social_media_url": "https://twitter.com/scotteg",
19   "platforms": {
20     "ios": "8.0"
21   },
22   "source_files": "Sources/**/*",
23   "frameworks": [
24     "UIKit",
25     "CoreData"
26   ],
27   "dependencies": {
28     "RxSwift": [
29       "~> 3.0"
30     ],
31     "RxCocoa": [
32       "~> 3.0"
33     ]
34   },
35   "pushed_with_swift_version": "3.0"