12345678910111213141516171819202122 |
- Pod::Spec.new do |s|
- s.name = "AlamofireObjectMapper"
- s.version = "6.3.0"
- s.license = { :type => "MIT", :file => "LICENSE" }
- s.summary = "An extension to Alamofire which automatically converts JSON response data into swift objects using ObjectMapper"
- s.homepage = "https://github.com/tristanhimmelman/AlamofireObjectMapper"
- s.author = { "Tristan Himmelman" => "tristanhimmelman@gmail.com" }
- s.source = { :git => 'https://github.com/tristanhimmelman/AlamofireObjectMapper.git', :tag => s.version.to_s }
- s.ios.deployment_target = '10.0'
- s.osx.deployment_target = '10.12'
- s.watchos.deployment_target = '3.0'
- s.tvos.deployment_target = '10.0'
-
- s.swift_version = '5.0'
- s.requires_arc = true
- s.source_files = 'AlamofireObjectMapper/**/*.swift'
- s.dependency 'Alamofire', '~> 5.1'
- s.dependency 'ObjectMapper', '~> 3.5.1'
- end
|