Module: DataMapper::Serializer::XML::LibXML

Defined in:
lib/dm-serializer/xml/libxml.rb

Class Method Summary collapse

Class Method Details

.add_node(parent, name, value, attrs = {}) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
# 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

.add_xml(parent, xml) ⇒ Object



34
35
36
# File 'lib/dm-serializer/xml/libxml.rb', line 34

def self.add_xml(parent, xml)
  parent << xml.root.copy(true)
end

.new_documentObject



7
8
9
# File 'lib/dm-serializer/xml/libxml.rb', line 7

def self.new_document
  ::LibXML::XML::Document.new
end

.output(doc) ⇒ Object



38
39
40
# File 'lib/dm-serializer/xml/libxml.rb', line 38

def self.output(doc)
  doc.root.to_s
end

.root_node(doc, name, attrs = {}) ⇒ Object



11
12
13
14
15
16
17
18
19
20
# 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