2 "name": "FancySources",
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",
12 "Nikolay Ischuk": "nk13.666@gmail.com"
18 "git": "https://github.com/Aranoledur/FancySources.git",
23 "FancySources/**/*.{h,m,swift}"
25 "exclude_files": "FancySources/Exclude",
26 "pod_target_xcconfig": {