Snap.podspec 568 B

1234567891011121314151617
  1. Pod::Spec.new do |s|
  2. s.name = 'Snap'
  3. s.version = '0.9.2'
  4. s.license = 'MIT'
  5. s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.'
  6. s.homepage = 'https://github.com/Masonry/Snap'
  7. s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
  8. s.social_media_url = 'http://twitter.com/robertjpayne'
  9. s.source = { :git => 'https://github.com/Masonry/Snap.git', :tag => '0.9.2' }
  10. s.ios.deployment_target = '8.0'
  11. s.osx.deployment_target = '10.9'
  12. s.source_files = 'Source/*.swift'
  13. s.requires_arc = true
  14. end