|
|
Pod::Spec.new do |s|
|
|
|
s.name = 'Masonry'
|
|
|
s.version = '0.0.1'
|
|
|
s.license = 'MIT'
|
|
|
s.summary = 'A light-weight layout framework which makes creating iOS AutoLayout NSLayoutConstraints in code quick, readable and descriptive.'
|
|
|
s.homepage = 'http://github.com/cloudkite/masonry'
|
|
|
s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
|
|
|
|
|
|
s.source = { :git => 'https://github.com/cloudkite/masonry.git', :tag => 'v0.0.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 layout code which is more concise and readable.
|
|
|
}
|
|
|
|
|
|
s.source_files = 'Masonry/*.{h,m}'
|
|
|
|
|
|
s.frameworks = 'Foundation', 'UIKit'
|
|
|
|
|
|
s.ios.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
|
|
|
end |
|
|
\ No newline at end of file |
...
|
...
|
|