[Add] ReerRouter 2.2.0
[CocoaPods.git] / Specs / 9 / 1 / c / LATableBuilder / 0.0.2 / LATableBuilder.podspec.json
blob2faa22deb7d784110c59cd47e00816e1c65d3747
2   "name": "LATableBuilder",
3   "version": "0.0.2",
4   "summary": "LATableBuilder is a pod to improve productivity and maintanability of complex table views",
5   "description": "LATableBuilder\n\nImplement tables fast as stacking table view cells block builders.\n```swift\n// Adding a single cell\nadd(cell: TextTableViewCell.self) { cell in \n  cell.configure(with: someData)\n}\n\n// Adding a serie of cells\naddTable(cell: TextTableViewCell.self, count: 3) { index, cell in \n  let data = someDataArray[index.row]\n  cell.configure(with: data)\n}\n```\n\nMIT license, use as you wish.",
6   "homepage": "https://github.com/lucasca73/LATableBuilder",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Lucas Costa Araujo": "lucascostaa73@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/lucasca73/LATableBuilder.git",
16     "tag": "0.0.2"
17   },
18   "platforms": {
19     "ios": "11.0"
20   },
21   "swift_versions": "5.0",
22   "source_files": "LATableBuilder/Classes/**/*",
23   "dependencies": {
24     "SnapKit": [
25       "~> 5.0.1"
26     ]
27   },
28   "swift_version": "5.0"