forked from tristanhimmelman/AlamofireObjectMapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlamofireObjectMapper.podspec
More file actions
22 lines (18 loc) · 858 Bytes
/
AlamofireObjectMapper.podspec
File metadata and controls
22 lines (18 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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.0.0-rc.3'
s.dependency 'ObjectMapper', '~> 3.5.1'
end