Authored by Jonas Budelmann

v0.3.2

v0.3.2
=======
* Add support for Mac OSX animator proxy ([pfandrade](https://github.com/pfandrade))
```objective-c
self.leftConstraint.animator.offset(20);
```
* Add setter methods for NSLayoutConstraint constant proxies like offset, centerOffset, insets, sizeOffset.
now you can update these values using more natural syntax
```objective-c
self.edgesConstraint.insets(UIEdgeInsetsMake(20, 10, 15, 5));
```
can now be written as:
```objective-c
self.edgesConstraint.insets = UIEdgeInsetsMake(20, 10, 15, 5);
```
v0.3.1
=======
... ...
Pod::Spec.new do |s|
s.name = 'Masonry'
s.version = '0.3.1'
s.version = '0.3.2'
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.3.1' }
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.3.2' }
s.description = %{
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
... ...