Tagged Questions

15
votes
8answers
6k views

Convert a Nokogiri document to a Ruby Hash

Is there an easy way to convert a Nokogiri XML document to a Hash? Something like Rails' Hash.from_xml.
3
votes
2answers
105 views

Add comment nodes outside root with ruby-libxml

I am writing an xml exporter in ruby and I am using libxml package for it. I want to write some comment nodes outside the root element <?xml version="1.0" encoding="UTF-8"?> <!-- comment ...
1
vote
1answer
192 views

Declaring namespaces using libxml-ruby

I am using libxml-ruby for parsing XML. I can able to create the xml file using libxml-ruby, but the problem is I am not able to declare the namespace for generated XML document. Please help me how ...
1
vote
2answers
898 views

Parsing namespaced XML using libxml-ruby

I'm attempting to parse XML in the following format (from the European Central Bank data feed) using libxml-ruby: <?xml version="1.0" encoding="UTF-8"?> <gesmes:Envelope ...
1
vote
1answer
280 views

Clear Unwanted Namespaces with LibXML-Ruby

I would like to parse an Atom Feed and create an Atom-compliant cache of each Entry. The problem is that some feeds (this one for example) have many namespaces other than the Atom one. Is it ...
1
vote
2answers
1k views

Ruby: libxml-ruby and adding nicely-formatted sibling nodes

Given my existing XML (test.xml): <root> <element> <child id="1" /> <child id="2" /> <child id="3" /> </element> </root> And my ruby code: ...
0
votes
1answer
160 views

libxml-ruby parse file and get required informations from xml

I am using libxml-ruby gem to read a xml string. I am unable to extract the required info from xml string. Currently i have following xml <?xml version="1.0" encoding="utf-8"?> ...
0
votes
1answer
351 views

How can I stop parse when find the 1st element?

I would like to stop parse when find 1st element even there is more same element after that. I use libxml,SAX on ruby. This code show every <usr> element. But I want to stop parse when find 1st ...