class Crack::XML
Public Class Methods
parse(xml)
click to toggle source
# File lib/crack/xml.rb, line 234 def self.parse(xml) parser.parse(xml) end
parser()
click to toggle source
# File lib/crack/xml.rb, line 226 def self.parser @@parser ||= REXMLParser end
parser=(parser)
click to toggle source
# File lib/crack/xml.rb, line 230 def self.parser=(parser) @@parser = parser end