# File lib/dm-serializer/xml/nokogiri.rb, line 22 def self.add_node(parent, name, value, attrs = {}) node = ::Nokogiri::XML::Node.new(name, parent.document) node << ::Nokogiri::XML::Text.new(value.to_s, parent.document) unless value.nil? attrs.each do |attr_name, attr_val| node[attr_name] = attr_val end parent << node node end
# File lib/dm-serializer/xml/nokogiri.rb, line 34 def self.add_xml(parent, xml) parent << xml.root end
# File lib/dm-serializer/xml/nokogiri.rb, line 7 def self.new_document ::Nokogiri::XML::Document.new end
# File lib/dm-serializer/xml/nokogiri.rb, line 38 def self.output(doc) doc.root.to_s end
# File lib/dm-serializer/xml/nokogiri.rb, line 11 def self.root_node(doc, name, attrs = {}) root = ::Nokogiri::XML::Node.new(name, doc) 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.