[Add] MentaKSAdapter 5.20.35
[CocoaPods.git] / Specs / 9 / a / 4 / RxDataSources / 3.0.0 / RxDataSources.podspec.json
blobe04a04c677899c09e5f3c0cf6ef55541fb982b9e
2   "name": "RxDataSources",
3   "version": "3.0.0",
4   "summary": "This is a collection of reactive data sources for UITableView and UICollectionView.",
5   "description": "This is a collection of reactive data sources for UITableView and UICollectionView.\n\nIt enables creation of animated data sources for table an collection views in just a couple of lines of code.\n\n```swift\nlet data: Observable<Section> = ...\n\nlet dataSource = RxTableViewSectionedAnimatedDataSource<Section>()\ndataSource.cellFactory = { (tv, ip, i) in\n    let cell = tv.dequeueReusableCell(withIdentifier: \"Cell\") ?? UITableViewCell(style:.Default, reuseIdentifier: \"Cell\")\n    cell.textLabel!.text = \"(i)\"\n    return cell\n}\n\n// animated\ndata\n    .bind(to: animatedTableView.rx.items(dataSource: dataSource))\n    .disposed(by: disposeBag)\n\n// normal reload\ndata\n    .bind(to: tableView.rx.items(dataSource: dataSource))\n    .disposed(by: disposeBag)\n```",
6   "homepage": "https://github.com/RxSwiftCommunity/RxDataSources",
7   "license": "MIT",
8   "authors": {
9     "Krunoslav Zaher": "krunoslav.zaher@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/RxSwiftCommunity/RxDataSources.git",
13     "tag": "3.0.0"
14   },
15   "requires_arc": true,
16   "source_files": "Sources/RxDataSources/**/*.swift",
17   "dependencies": {
18     "Differentiator": [
19       "~> 3.0"
20     ],
21     "RxSwift": [
22       "~> 4.0"
23     ],
24     "RxCocoa": [
25       "~> 4.0"
26     ]
27   },
28   "platforms": {
29     "ios": "8.0",
30     "tvos": "9.0"
31   },
32   "pushed_with_swift_version": "4.0"