forked from kodlian/AlamofireXMLRPC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlamofireXMLRPC.podspec
33 lines (25 loc) · 2.09 KB
/
AlamofireXMLRPC.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "AlamofireXMLRPC"
s.version = "2.2.0"
s.summary = "AlamofireXMLRPC brings XMLRPC functionalities to Alamofire."
s.description = "AlamofireXMLRPC brings XMLRPC functionalities to Alamofire. It aims to provide an easy way to perform XMLRPC call and to retrieve smoothly the response."
s.homepage = "https://github.com/kodlian/AlamofireXMLRPC"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = "Jérémy Marchand"
s.social_media_url = "http://twitter.com/kodlian"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# When using multiple platforms
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/kodlian/AlamofireXMLRPC.git", :tag => "2.2.0" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Sources/AlamofireXMLRPC/*.swift"
# Dependency
s.dependency 'Alamofire'
s.dependency 'AEXML'
end