Method: Epics::HIA#to_xml
- Defined in:
- lib/epics/hia.rb
#to_xml ⇒ Object
54 55 56 57 58 59 60 61 |
# File 'lib/epics/hia.rb', line 54 def to_xml Nokogiri::XML::Builder.new do |xml| xml.send(root, 'xmlns:ds' => 'http://www.w3.org/2000/09/xmldsig#', 'xmlns' => 'urn:org:ebics:H004', 'Version' => 'H004', 'Revision' => '1') { xml.parent.add_child(header) xml.parent.add_child(body) } end.to_xml(save_with: Nokogiri::XML::Node::SaveOptions::AS_XML, encoding: 'utf-8') end |