[Add] FTMobileSDK 1.5.8-alpha.2
[CocoaPods.git] / Specs / 8 / e / 9 / RxCoreData / 0.5.0 / RxCoreData.podspec.json
blobb04fe67e58d7fdc29dcd179d5f33e573093db0db
2   "name": "RxCoreData",
3   "version": "0.5.0",
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.5.0"
17   },
18   "social_media_url": "https://twitter.com/scotteg",
19   "platforms": {
20     "ios": "9.3",
21     "osx": "10.12",
22     "watchos": "2.0",
23     "tvos": "9.0"
24   },
25   "source_files": "Sources/**/*",
26   "frameworks": "CoreData",
27   "dependencies": {
28     "RxSwift": [
29       "~> 4.2.0"
30     ],
31     "RxCocoa": [
32       "~> 4.2.0"
33     ]
34   },
35   "pushed_with_swift_version": "4.0"