The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
118 views

installing libxml in ruby 1.8.7 on linux mint

this is the result when trying to install -> extconf failure: need libm virtualrails@jay ~ $ sudo gem install libxml-ruby Building native extensions. This could take a while... ERROR: Error ...
2
votes
2answers
115 views

Libxml-ruby error on Rails app startup — uninitialized constant LibXML::XML::Error::I18N

I just updated to Rails 3.2.12 and Bundler also updated libxml-ruby from 2.4.0 to 2.5.0. When I restart my production server (nginx), or try to open a console, I get: ...
2
votes
0answers
386 views

cannot load such file — libxml_ruby for Windows

My step is, Execute RubyInstaller.exe file install ruby installed Path: c:\ruby193 install DevKit gem install libxml-ruby --platform x86-mswin32-60 make test.rb file require 'rubygems' require ...
0
votes
1answer
96 views

Ruby LibXML - If a node exists, filter based on value

I am working on the following XML: <digiprovMD ID="digiprov-3"> <mdWrap MDTYPE="PREMIS"> <xmlData> <agent> <agentIdentifier> ...
0
votes
1answer
134 views

Lib Xml Ruby :Error `parse': undefined method `read' for “file.xml”:String (NoMethodError)

require 'xml/libxml' require 'libxml/document' $release_date doc=LibXML::XML::Parser.io(file.xml).parse doc.root.each_element('//ABCD/xyz/') do |elem| elem.each_element do |node| ...
0
votes
1answer
255 views

Parsing through an xml file using libxml-ruby

I'm using rails 2.3.9, ruby 1.9.3, rubygems 1.8.24 and windows 7 ultimate I installed the libxml-ruby gem in hopes of getting the output that i want. I have an xml file that is over 150 nodes in all, ...
0
votes
1answer
83 views

Can't find nodes in Atom with Ruby LibXML

I have the following XML Document: <?xml version=\"1.0\" encoding=\"UTF-8\"?> <atom:entry xmlns:atom=\"http://www.w3.org/2005/Atom\" xmlns:apps=\"http://schemas.google.com/apps/2006\" ...
0
votes
1answer
991 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"?> ...
4
votes
2answers
279 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
576 views

RoR - installing gem - libxml-ruby-1.1.4

I'm trying install libxml-ruby-1.1.4 (via Bundler, but same thing happens when I do a gem install) and I get a huge list of errors. I'm running Mac OSX 10.6 on a Unibody MacBook. The errors start ...
2
votes
1answer
408 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 ...
0
votes
2answers
2k views

Problem installing LibCurl + LibXML + FeedZirra on Windows XP

I am rails newbie. I am working on Windows XP. I have this version of ruby. ruby 1.8.7 (2010-08-16 patchlevel 302) [i386-mingw32] I have Rails 2.3.8 installed. I am trying to install feedzirra ...
0
votes
1answer
774 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 ...
4
votes
4answers
2k 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 ...
0
votes
1answer
263 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 ...
4
votes
3answers
3k 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 ...
1
vote
2answers
2k 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 ...
0
votes
1answer
451 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 ...
1
vote
1answer
331 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 ...
0
votes
2answers
2k 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 ...
32
votes
10answers
13k 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
1answer
674 views

How do I tell libxml-ruby about external entity files?

I'm trying to validate using libxml-ruby's DTD#validate, but I keep getting the following warnings: Warning: failed to load external entity "xhtml-lat1.ent" at :29. Warning: failed to load external ...
2
votes
1answer
2k views

libxml-ruby on windows xp problem

About a month ago I installed libxml-ruby using gem install libxml-ruby and it worked fine. Then i went to install it on another machine today and it failed with this error: ...
1
vote
2answers
2k 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
995 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() ...