[Add] AlibabacloudPolardbx20200202 2.0.0
[CocoaPods.git] / Specs / e / 6 / 0 / ConstraintFormatter / 1.1.0 / ConstraintFormatter.podspec.json
bloba5d382e7f0d578815d2ac21cf09050379825d829
2   "name": "ConstraintFormatter",
3   "version": "1.1.0",
4   "summary": "A library to unify visual constraints and constraints based on attributes for Auto Layout",
5   "description": "  It's really verbose to write NSLayoutConstraints based on attributes and with this library you can easily write and mix them with visual constraints. Something like this:\n\n  ```objc\n  id views = @{@\"view1\": view1, @\"view2\": view2};\n  id metrics = @{@\"margin\": @(10)};\n  id formats = @[@\"view1.bottom == view2.top + margin\",\n                 @\"H:|-margin-[view1]-margin-|\",\n                 @\"H:|[view2]|\"];\n  \n  [view addConstraintsWithFormats:formats\n                            views:views\n                          metrics:metrics];\n  ```\n",
6   "homepage": "https://github.com/greis/ConstraintFormatter",
7   "license": "MIT",
8   "authors": {
9     "Gabriel Reis": "gabriel.oreis@gmail.com"
10   },
11   "platforms": {
12     "ios": "6.0"
13   },
14   "source": {
15     "git": "https://github.com/greis/ConstraintFormatter.git",
16     "tag": "1.1.0"
17   },
18   "source_files": [
19     "Classes",
20     "Classes/**/*.{h,m}"
21   ],
22   "exclude_files": "Classes/Exclude",
23   "requires_arc": true,
24   "dependencies": {
25     "RegexKitLite": [
26       "~> 4.0"
27     ]
28   }