Skip to content

Commit

Permalink
[Update] Masonry (0.2.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudkite committed Aug 20, 2013
1 parent 7d9b8fa commit 20bc1e2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Masonry/0.2.1/Masonry.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Pod::Spec.new do |s|
s.name = 'Masonry'
s.version = '0.2.1'
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' => '[email protected]' }

s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.1' }

s.description = %{
Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
Masonary has its own layout DSL which provides a chainable way of describing your
NSLayoutConstraints which results in layout code which is more concise and readable.
Masonry supports iOS and Mac OSX.
}

s.source_files = 'Masonry/*.{h,m}'

s.ios.frameworks = 'Foundation', 'UIKit'
s.osx.frameworks = 'Foundation', 'AppKit'

s.ios.deployment_target = '6.0' # using autolayout
s.osx.deployment_target = '10.8' # should change to 10.7
s.requires_arc = true
end

0 comments on commit 20bc1e2

Please sign in to comment.