Xmlsimple: prevent folding multiple elements into array?

I have some xml that represents a somewhat weirdly formed hash.
XmlSimple is eating some of my structure.

INPUT:



state


open


rate


daily


duration


monthly


XmlSimple.xml_in(xml, {‘ForceArray’=>false})

OUTPUT:
{“map”=> {
“time”=>[“daily”, “monthly”],
“key”=>[“state”, “rate”, “duration”],
“string”=>“open”
}
}

With the arrays folded that way, there’s no way for me to tell that
the value of “state” is “open”. I don’t really care about the
“datatypes”. I’m aiming at a single level hash something like this:

DESIRED:
{“map”=> {
“state” => "open,
“rate” => “daily”,
“duration” => “monthly”
}
}

I can’t really change the odd incoming XML, but I’m happy to process
any Ruby data structure that hasn’t lost some of my order/structure.
All of the options around folding appear to affect only attributes,
but I have only elements.

Man, wish I could help you there. The problem is that the only languages
that I have been able to work with XML in are ActionScript and Java…
and Ruby really doesn’t look like either, not to mention I can’t even
seem to find some decent tutorials that explain it…

Oh well, sorry for taking up space on this thread. But perchance, you
may want to investigate the REXML library that comes with Ruby. It’s
just an alternative to XMLSimple.

Thanks for the thoughts! I figured I would have to move to REXML
eventually, and I guess it’s time. thanks again.