[Add] DGisFlutterMapSDK 12.3.0
[CocoaPods.git] / Specs / 6 / d / f / FancySources / 1.0.1 / FancySources.podspec.json
blob5254ffc5d7fa6c7c6fa4342ff7ffcb4d2446b21e
2   "name": "FancySources",
3   "version": "1.0.1",
4   "summary": "Flexible, generic and abstracted from UIKit data sources.",
5   "description": "FancySources\n\nFlexible, generic and abstracted from UIKit data sources\n\nUsage example\n\ntypealias DataSourceType = CollectionViewDataSource\n\nfunc didLoadEntities(entities: [SomeEntities]) {        \n    let dataSource = DataSourceType(items: entities)\n    fill(with: dataSource)\n}\n\nfunc fill(with dataSource: DataSourceType) {\n    dataSource.cellDescriptorCreator = {\n        [weak self] item, index in\n\n        return CellDescriptor(nibName: String(describing: SomeGameCell.self), configure: {\n            (cell: SomeGameCell) in\n\n            cell.fill(with: item)\n            cell.delegate = self\n        })\n    }\n    collectionView.dataSource = dataSource\n    collectionView.reloadData()\n}",
6   "homepage": "https://github.com/Aranoledur/FancySources",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Nikolay Ischuk": "nk13.666@gmail.com"
13   },
14   "platforms": {
15     "ios": "8.0"
16   },
17   "source": {
18     "git": "https://github.com/Aranoledur/FancySources.git",
19     "tag": "v1.0.1"
20   },
21   "source_files": [
22     "FancySources",
23     "FancySources/**/*.{h,m,swift}"
24   ],
25   "exclude_files": "FancySources/Exclude",
26   "pod_target_xcconfig": {
27     "SWIFT_VERSION": "4"
28   }