Tagged Questions
1
vote
2answers
1k views
Ruby: libxml-ruby and adding nicely-formatted sibling nodes
Given my existing XML (test.xml):
<root>
<element>
<child id="1" />
<child id="2" />
<child id="3" />
</element>
</root>
And my ruby code:
...