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 iteratively proceed through a XML doc like this:
<?xml version="1.0" ?>
<bars>
<bar>
<id>29</id>
<foo>Something</foo>
</bar>
<bar>
<id>46</id>
<foo>Something Else</foo>
</bar>
...
</bars>
I'd like to process both elements within each "bar" at the same time (dropping both fields into a database row in one operation, actually), rather than simply plucking out all the "ids" or "foos" at once across all "bars" as is often shown in tutorials. What is the best way to iterate over thru the "bar" elements? Should I .each within "bars" or should I convert the structure to arrays?