tenderlove (owner)

Revisions

gist: 199975 Download_button fork
public
Public Clone URL: git://gist.github.com/199975.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'nokogiri'
 
doc = Nokogiri::XML(DATA)
 
text = doc.at('b').attribute_nodes.first.children.first
text.remove
doc.at('a') << text
 
__END__
<root>
  <a>a</a>
  <b foo="bar">b</b>
</root>