module LibXML
The libxml gem provides Ruby language bindings for GNOME's Libxml2 XML
toolkit. To get started you may:
require 'test_helper' document = XML::Document.new
However, when creating an application or library you plan to redistribute, it is best to not add the LibXML
module to the global namespace, in which case you can either write your code like this:
require 'libxml' document = LibXML::XML::Document.new
Refer to the README file to get started and the LICENSE file for copyright and distribution information.