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
106 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 ...
3
votes
3answers
2k views
Processing large XML file with libxml-ruby chunk by chunk
I'd like to read a large XML file that contains over a million small bibliographic records (like <article>...</article>) using libxml in Ruby. I have tried the Reader class in combination ...
2
votes
4answers
1k views
libxml-ruby failed to load at x86_64
We are having problem with libxml-ruby gem at the server side
Possible because it uses x86_64 architecture:
$ uname -a
Linux ip-10-228-171-64 2.6.21.7-2.fc8xen-ec2-v1.0 #1 SMP Tue Sep 1 10:25:30 EDT ...
1
vote
1answer
193 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
900 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:
...
1
vote
2answers
832 views
Ruby: Can't save document with Libxml-ruby
From the libxml-ruby API docs (http://libxml.rubyforge.org/rdoc/index.html), under LibXML::XML::Document, I tried the following:
filename = 'something.xml'
stats_doc = XML::Document.new()
...
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
114 views
Make a dependecy gem use libxml-jruby instead libxml-ruby using Bundler
I'm switching from ree+nginx to jruby+torquebox in my Rails 2.3 app, but I am having issues with some of my gems that use libxml-ruby.
I can't install libxml-ruby using jruby, so after some search at ...
0
votes
1answer
654 views
Bus Error - What causes this in Ruby?
I have run into this error 5 or 10 times over the past few years and have never found a clear answer to this problem. Here is the error:
$ rake db:migrate
...
0
votes
1answer
209 views
Libxml Ruby : Do I need to manually garbage collect node sets returned by doucment#find?
The documentation for LibXML::XML::Document#find mentions that following code style needs to be used to avoid seg faults:
nodes = doc.find('/header')
nodes.each do |node|
... do stuff ...
end
Is ...
0
votes
2answers
1k views
libxml-ruby parsing HELP
Alright, switching from working Hpricot to Libxml-ruby due to speed and well the disappearance of _why, looked at Nokogiri for a second but decided to look at Libxml-ruby for speed and longevity. I ...