forked from Xinguang/AlamofireSwiftyJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlamofireSwiftyJSON.podspec
More file actions
21 lines (19 loc) · 899 Bytes
/
AlamofireSwiftyJSON.podspec
File metadata and controls
21 lines (19 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "AlamofireSwiftyJSON"
s.version = "1.0.1"
s.summary = "Alamofire extension for serialize Data to SwiftyJSON "
s.homepage = "https://github.com/Xinguang/AlamofireSwiftyJSON"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Xinguang" => "AlamofireSwiftyJSON.github.com@kansea.com" }
s.source = { :git => "https://github.com/Xinguang/AlamofireSwiftyJSON.git", :tag => s.version.to_s }
s.documentation_url = 'http://Xinguang.github.io/AlamofireSwiftyJSON/index.html'
#s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Source/*.swift'
s.dependency 'Alamofire', '~> 4.0'
s.dependency 'SwiftyJSON', '~> 4.0'
end