parse(data) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/xml_mini/libxmlsax.rb, line 65 def parse(data) if !data.respond_to?(:read) data = StringIO.new(data || "") end if data.eof? {} else LibXML::XML::Error.set_handler(&LibXML::XML::Error::QUIET_HANDLER) parser = LibXML::XML::SaxParser.io(data) document = document_class.new parser.callbacks = document parser.parse document.hash end end
Register or log in to add new notes.