Masonry.podspec 1.1 KB

123456789101112131415161718192021222324252627
  1. Pod::Spec.new do |s|
  2. s.name = 'Masonry'
  3. s.version = '0.6.1'
  4. s.license = 'MIT'
  5. s.summary = 'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
  6. s.homepage = 'https://github.com/cloudkite/Masonry'
  7. s.author = { 'Jonas Budelmann' => 'jonas.budelmann@gmail.com' }
  8. s.social_media_url = "http://twitter.com/cloudkite"
  9. s.source = { :git => 'https://github.com/cloudkite/Masonry.git', :tag => 'v0.6.1' }
  10. s.description = %{
  11. Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
  12. Masonry has its own layout DSL which provides a chainable way of describing your
  13. NSLayoutConstraints which results in layout code which is more concise and readable.
  14. Masonry supports iOS and Mac OSX.
  15. }
  16. s.source_files = 'Masonry/*.{h,m}'
  17. s.ios.frameworks = 'Foundation', 'UIKit'
  18. s.osx.frameworks = 'Foundation', 'AppKit'
  19. s.ios.deployment_target = '6.0' # minimum SDK with autolayout
  20. s.osx.deployment_target = '10.7' # minimum SDK with autolayout
  21. s.requires_arc = true
  22. end