Tagged Questions

1
vote
1answer
57 views

Iterative Parsing XML

Just getting started with Ruby and have a newbie question re parsing XML. I'm trying REXML (yes, I know hpricot and others exist, but I am starting with REXML to learn.) The problem is how to …
1
vote
1answer
144 views

Parsing an xml doc with <% %> tags in ruby

I'm looking for a way to parse an xml/html document in ruby, which contains ERB style tags <% %> with ruby code inside. REXML, the built in XML parser won't allow me to do this. I'm aware that …
0
votes
1answer
77 views

How do I control REXML formatting on added elements?

I am a adding a couple of simple elements to a bunch of XML files (plists). The existing XML element I am working on looks like this: <dict> <key>background</key> …
0
votes
1answer
244 views

Add XML namespace to existing document in ruby

I need to add an element to an existing XML document which uses a namespace that doesn't exist in the original. How do I do this? Ideally I would like to use REXML for portability, but any common XML …