|
|
Pod::Spec.new do |s|
|
|
|
s.name = 'Masonry'
|
|
|
s.version = '0.1.6'
|
|
|
s.version = '0.2.0'
|
|
|
s.license = 'MIT'
|
|
|
s.summary = 'Harness the power of iOS AutoLayout NSLayoutConstraints with a simplified, chainable and descriptive 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.1.6' }
|
|
|
s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.2.0' }
|
|
|
|
|
|
s.description = %{
|
|
|
Masonary is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
|
...
|
...
|
@@ -16,8 +16,10 @@ Pod::Spec.new do |s| |
|
|
|
|
|
s.source_files = 'Masonry/*.{h,m}'
|
|
|
|
|
|
s.frameworks = 'Foundation', 'UIKit'
|
|
|
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 |
|
|
\ No newline at end of file |
...
|
...
|
|