1
vote
1answer
53 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 …
0
votes
1answer
73 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
93 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, which (as I found …
1
vote
1answer
142 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
82 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::Document.new file …
0
votes
1answer
242 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 …
