sprsquish (owner)

Forks

Revisions

gist: 113199 Download_button fork
public
Public Clone URL: git://gist.github.com/113199.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
n = Nokogiri::XML::Node.new('root', Nokogiri::XML::Document.new)
n << Nokogiri::XML::Node.new('child', n.document)
n << (c = Nokogiri::XML::Node.new('child', n.document))
c.default_namespace = 'foo:bar'
 
n.search './child', {'xmlns' => 'foo:bar'}