Tagged Questions

1
vote
1answer
44 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 proble …
0
votes
1answer
58 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& …
1
vote
1answer
131 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 th …
0
votes
1answer
73 views

Where does Rails use REXML lib and how to require that part?

I have a gem that uses some of the Rails libs, including action_view and active_controller. Though I require those libs, all tests fail when trying to call some has_text? method, w …
0
votes
1answer
216 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 …
0
votes
1answer
66 views

REXML Formatting issues

Hi, I am using REXML to edit an xml file but have ran into difficulties with formatting. My original code looked like this: file = File.new( destination) doc = REXML::Docume …