Authored by Jonas Budelmann

v0.2.3

1 Pod::Spec.new do |s| 1 Pod::Spec.new do |s|
2 s.name = 'Masonry' 2 s.name = 'Masonry'
3 - s.version = '0.2.2' 3 + s.version = '0.2.3'
4 s.license = 'MIT' 4 s.license = 'MIT'
5 s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.' 5 s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
6 s.homepage = 'https://github.com/cloudkite/Masonry' 6 s.homepage = 'https://github.com/cloudkite/Masonry'
7 s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' } 7 s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
8 8
9 - s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.2' } 9 + s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.3' }
10 10
11 s.description = %{ 11 s.description = %{
12 Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. 12 Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
@@ -23,4 +23,4 @@ Pod::Spec.new do |s| @@ -23,4 +23,4 @@ Pod::Spec.new do |s|
23 s.ios.deployment_target = '6.0' # minimum SDK with autolayout 23 s.ios.deployment_target = '6.0' # minimum SDK with autolayout
24 s.osx.deployment_target = '10.7' # minimum SDK with autolayout 24 s.osx.deployment_target = '10.7' # minimum SDK with autolayout
25 s.requires_arc = true 25 s.requires_arc = true
26 -end  
  26 +end
@@ -17,7 +17,7 @@ @@ -17,7 +17,7 @@
17 <key>CFBundlePackageType</key> 17 <key>CFBundlePackageType</key>
18 <string>FMWK</string> 18 <string>FMWK</string>
19 <key>CFBundleShortVersionString</key> 19 <key>CFBundleShortVersionString</key>
20 - <string>0.2.2</string> 20 + <string>0.2.3</string>
21 <key>CFBundleSignature</key> 21 <key>CFBundleSignature</key>
22 <string>????</string> 22 <string>????</string>
23 <key>CFBundleVersion</key> 23 <key>CFBundleVersion</key>
1 -Masonry  
2 -======= 1 +#Masonry [![Build Status](https://travis-ci.org/cloudkite/Masonry.png?branch=master)](https://travis-ci.org/cloudkite/Masonry)
3 2
4 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. 3 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.
5 Masonry supports iOS and Mac OSX. 4 Masonry supports iOS and Mac OSX.
6 5
7 For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace. 6 For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace.
8 7
9 -[![Build Status](https://travis-ci.org/cloudkite/Masonry.png?branch=master)](https://travis-ci.org/cloudkite/Masonry)  
10 -  
11 ## Whats wrong with NSLayoutConstraints? 8 ## Whats wrong with NSLayoutConstraints?
12 9
13 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. 10 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.