DataMapper::Serializer::XML::Nokogiri

Public Class Methods

add_node(parent, name, value, attrs = {}) click to toggle source
# 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
add_xml(parent, xml) click to toggle source
# File lib/dm-serializer/xml/nokogiri.rb, line 34
def self.add_xml(parent, xml)
  parent << xml.root
end
new_document() click to toggle source
# File lib/dm-serializer/xml/nokogiri.rb, line 7
def self.new_document
  ::Nokogiri::XML::Document.new
end
output(doc) click to toggle source
# File lib/dm-serializer/xml/nokogiri.rb, line 38
def self.output(doc)
  doc.root.to_s
end
root_node(doc, name, attrs = {}) click to toggle source
# 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.