Alamofire.podspec 901 B

123456789101112131415161718192021222324252627282930
  1. Pod::Spec.new do |s|
  2. s.name = 'Alamofire'
  3. s.version = '5.5.0'
  4. s.license = 'MIT'
  5. s.summary = 'Elegant HTTP Networking in Swift'
  6. s.homepage = 'https://github.com/Alamofire/Alamofire'
  7. s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' }
  8. s.source = { :git => 'https://github.com/Alamofire/Alamofire.git', :tag => s.version }
  9. s.documentation_url = 'https://alamofire.github.io/Alamofire/'
  10. s.ios.deployment_target = '10.0'
  11. s.osx.deployment_target = '10.12'
  12. s.tvos.deployment_target = '10.0'
  13. s.watchos.deployment_target = '3.0'
  14. s.swift_versions = ['5.3', '5.4', '5.5', '5.6']
  15. s.default_subspec = 'Core'
  16. s.subspec 'Core' do |sp|
  17. sp.source_files = 'Source/*.swift'
  18. end
  19. s.subspec 'Concurrency' do |sp|
  20. sp.dependency 'Alamofire/Core'
  21. sp.source_files = 'Source/AlamofireConcurrency/Concurrency.swift'
  22. end
  23. s.frameworks = 'CFNetwork'
  24. end