29 lines
1006 B
Ruby
Executable File
29 lines
1006 B
Ruby
Executable File
Pod::Spec.new do |s|
|
|
s.name = "SwiftyXMLParser"
|
|
s.version = "5.4.0"
|
|
s.summary = "Simple XML Parser implemented by Swift"
|
|
|
|
s.description = <<-DESC
|
|
This is a XML parser inspired by SwiftyJSON and SWXMLHash.
|
|
|
|
NSXMLParser in Foundation framework is a kind of "SAX" parser. It has a enough performance but is a little inconvenient.
|
|
So we have implemented "DOM" parser wrapping it.
|
|
DESC
|
|
|
|
s.homepage = "https://github.com/yahoojapan/SwiftyXMLParser.git"
|
|
s.license = "MIT"
|
|
s.author = { "kahayash" => "kahayash@yahoo-corp.jp" }
|
|
|
|
s.ios.deployment_target = "9.0"
|
|
s.tvos.deployment_target = "9.0"
|
|
s.osx.deployment_target = "10.10"
|
|
s.watchos.deployment_target = '6.0'
|
|
|
|
s.swift_versions = ['5.1', '5.2', '5.3']
|
|
|
|
s.source_files = "SwiftyXMLParser/*.swift"
|
|
s.requires_arc = true
|
|
|
|
s.source = { :git => "https://github.com/yahoojapan/SwiftyXMLParser.git", :tag => "5.4.0" }
|
|
end
|