SnapKit.podspec 616 B

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = 'SnapKit'
  3. s.version = '4.0.1'
  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/SnapKit/SnapKit'
  7. s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
  8. s.social_media_url = 'http://twitter.com/robertjpayne'
  9. s.source = { :git => 'https://github.com/SnapKit/SnapKit.git', :tag => '4.0.1' }
  10. s.ios.deployment_target = '8.0'
  11. s.osx.deployment_target = '10.11'
  12. s.tvos.deployment_target = '9.0'
  13. s.source_files = 'Source/*.swift'
  14. s.swift_version = '4.0'
  15. end