blob: c69a1f9880bda7a5ae2fe27d20abf4d3b85685f5 [file] [log] [blame]
{
"name": "AutoLayoutDSL",
"version": "1.0.0",
"summary": "A straightforward DSL for specifying Cocoa Auto Layout constraints.",
"description": " AutoLayoutDSL allows you to turn this:\n\n [self.view addConstraint:[NSLayoutConstraint constraintWithItem:_button2\n attribute:NSLayoutAttributeLeft\n relatedBy:NSLayoutRelationEqual\n toItem:_button1\n attribute:NSLayoutAttributeRight\n multiplier:1.0\n constant:5.0]];\n\n into this:\n\n View(_button2).left == View(_button1).right + 5.0;\n\n or even this:\n\n _button2.left == _button1.right + 5.0;\n\n .\n",
"homepage": "http://github.com/humblehacker/AutoLayoutDSL",
"license": "MIT",
"authors": {
"David Whetstone": "david@humblehacker.com"
},
"source": {
"git": "https://github.com/humblehacker/AutoLayoutDSL.git",
"tag": "1.0.0"
},
"platforms": {
"ios": "6.0"
},
"requires_arc": true,
"source_files": "Classes",
"resources": "Assets",
"dependencies": {
"BlocksKit": [
"~> 2.0"
],
"libextobjc/EXTScope": [
"~> 0.4"
]
},
"xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++11",
"CLANG_CXX_LIBRARY": "libc++"
}
}