forked from SnapKit/Masonry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Masonry.podspec
27 lines (22 loc) · 1.06 KB
/
Masonry.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'Masonry'
s.version = '0.5.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' => '[email protected]' }
s.social_media_url = "http://twitter.com/cloudkite"
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.5.3' }
s.description = %{
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 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' # minimum SDK with autolayout
s.osx.deployment_target = '10.7' # minimum SDK with autolayout
s.requires_arc = true
end