module ActiveSupport::XmlMini_LibXML

def parse(data)

XML Document string or IO to parse
data::
Parse an XML Document string or IO into a simple hash using libxml.
def parse(data)
  if !data.respond_to?(:read)
    data = StringIO.new(data || "")
  end
  if data.eof?
    {}
  else
    LibXML::XML::Parser.io(data).parse.to_hash
  end
end