AlamofireObjectMapper.podspec 854 B

12345678910111213141516171819202122
  1. Pod::Spec.new do |s|
  2. s.name = "AlamofireObjectMapper"
  3. s.version = "6.3.0"
  4. s.license = { :type => "MIT", :file => "LICENSE" }
  5. s.summary = "An extension to Alamofire which automatically converts JSON response data into swift objects using ObjectMapper"
  6. s.homepage = "https://github.com/tristanhimmelman/AlamofireObjectMapper"
  7. s.author = { "Tristan Himmelman" => "tristanhimmelman@gmail.com" }
  8. s.source = { :git => 'https://github.com/tristanhimmelman/AlamofireObjectMapper.git', :tag => s.version.to_s }
  9. s.ios.deployment_target = '10.0'
  10. s.osx.deployment_target = '10.12'
  11. s.watchos.deployment_target = '3.0'
  12. s.tvos.deployment_target = '10.0'
  13. s.swift_version = '5.0'
  14. s.requires_arc = true
  15. s.source_files = 'AlamofireObjectMapper/**/*.swift'
  16. s.dependency 'Alamofire', '~> 5.1'
  17. s.dependency 'ObjectMapper', '~> 3.5.1'
  18. end