[Delete] DSPSDK 1.0.0.3
[CocoaPods.git] / Specs / 8 / 1 / 9 / Schematic / 1.0.0 / Schematic.podspec.json
blob5d9c53712c121640ef8cd3f9a7bbe94e169679d3
2   "name": "Schematic",
3   "version": "1.0.0",
4   "summary": "A declarative Swift micro-framework for view layouts",
5   "description": "In summary, we wanted to go from this:\n```swift\nNSLayoutConstraint.activate([\n    a.leadingAnchor.constraint(equalTo: parentView.leadingAnchor, constant: 10.0),\n    a.trailingAnchor.constraint(equalTo: parentView.trailingAnchor, constant: -10.0),\n    a.topAnchor.constraint(equalTo: parentView.topAnchor, constant: 10.0),\n    a.bottomAnchor.constraint(equalTo: parentView.bottomAnchor, constant: -10.0)\n])\n```\n\nand go to something like this:\n```swift\na.applyLayout([\n    .alignToEdges(of: parentView)\n])\n```",
6   "homepage": "https://github.com/Wattpad/Schematic",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "alexjfigueroa@gmail.com": "alexjfigueroa@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/Wattpad/Schematic.git",
16     "tag": "1.0.0"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "swift_versions": "4.0",
22   "source_files": "Schematic/Classes/**/*",
23   "swift_version": "4.0"