Authored by Jonas Budelmann

v0.2.3

Pod::Spec.new do |s|
s.name = 'Masonry'
s.version = '0.2.2'
s.version = '0.2.3'
s.license = 'MIT'
s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
s.homepage = 'https://github.com/cloudkite/Masonry'
s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.2' }
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.3' }
s.description = %{
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
... ... @@ -23,4 +23,4 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '6.0' # minimum SDK with autolayout
s.osx.deployment_target = '10.7' # minimum SDK with autolayout
s.requires_arc = true
end
\ No newline at end of file
end
... ...
... ... @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.2.2</string>
<string>0.2.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
... ...
Masonry
=======
#Masonry [![Build Status](https://travis-ci.org/cloudkite/Masonry.png?branch=master)](https://travis-ci.org/cloudkite/Masonry)
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonry has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable.
Masonry supports iOS and Mac OSX.
For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace.
[![Build Status](https://travis-ci.org/cloudkite/Masonry.png?branch=master)](https://travis-ci.org/cloudkite/Masonry)
## Whats wrong with NSLayoutConstraints?
Under the hood Auto Layout is a powerful and flexible way of organising and laying out your views. However creating constraints from code is verbose and not very descriptive.
... ...