# File lib/dm-serializer/xml/libxml.rb, line 22 def self.add_node(parent, name, value, attrs = {}) value_str = value.to_s unless value.nil? node = ::LibXML::XML::Node.new(name, value_str) attrs.each do |attr_name, attr_val| node[attr_name] = attr_val end parent << node node end
# File lib/dm-serializer/xml/libxml.rb, line 34 def self.add_xml(parent, xml) parent << xml.root.copy(true) end
# File lib/dm-serializer/xml/libxml.rb, line 7 def self.new_document ::LibXML::XML::Document.new end
# File lib/dm-serializer/xml/libxml.rb, line 38 def self.output(doc) doc.root.to_s end
# File lib/dm-serializer/xml/libxml.rb, line 11 def self.root_node(doc, name, attrs = {}) root = ::LibXML::XML::Node.new(name) attrs.each do |attr_name, attr_val| root[attr_name] = attr_val end doc.root.nil? ? doc.root = root : doc.root << root root end
Generated with the Darkfish Rdoc Generator 2.