[Add] ZJSDK 2.5.4.14
[CocoaPods.git] / Specs / 9 / 1 / c / LATableBuilder / 0.0.1 / LATableBuilder.podspec.json
blob8928937d75786103e1fae4a7a1b55ddacc6c8619
2   "name": "LATableBuilder",
3   "version": "0.0.1",
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.1"
17   },
18   "platforms": {
19     "ios": "11.0"
20   },
21   "swift_versions": "5.0",
22   "source_files": "LATableBuilder/Classes/**/*",
23   "swift_version": "5.0"