Guest User

Untitled

a guest
Aug 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. require 'nokogiri'
  2. xml = Sistema.all.to_xml
  3.  
  4. builder = Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml|
  5. xml.relatorio {
  6. xml.nome "Milfont"
  7. }
  8. end
  9.  
  10. @doc = Nokogiri::XML(xml)
  11. doc = Nokogiri::XML(builder.to_xml)
  12. item = doc.at_css "relatorio"
  13. item.add_child @doc.root
  14.  
  15. doc.to_xml #xupa!
Add Comment
Please, Sign In to add comment