Alamofire.podspec 728 B

12345678910111213141516171819202122
  1. Pod::Spec.new do |s|
  2. s.name = 'Alamofire'
  3. s.version = '5.0.0-beta.4'
  4. s.license = 'MIT'
  5. s.summary = 'Elegant HTTP Networking in Swift'
  6. s.homepage = 'https://github.com/Alamofire/Alamofire'
  7. s.social_media_url = 'http://twitter.com/AlamofireSF'
  8. s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' }
  9. s.source = { :git => 'https://github.com/Alamofire/Alamofire.git', :tag => s.version }
  10. s.documentation_url = 'https://alamofire.github.io/Alamofire/'
  11. s.ios.deployment_target = '10.0'
  12. s.osx.deployment_target = '10.12'
  13. s.tvos.deployment_target = '10.0'
  14. s.watchos.deployment_target = '3.0'
  15. s.swift_version = '5.0'
  16. s.source_files = 'Source/*.swift'
  17. s.frameworks = 'CFNetwork'
  18. end