[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

xml/xslt -- no such file to load

mcv

6/5/2007 11:38:00 AM

Hello,

I'm new to ruby.
I've installed `gem install ruby-xslt --include-dependencies`. Everything
seemed to install seamlessy. But when I'm trying to require 'xml/xslt' I
get an error:

mcv@asus gems/ruby-xslt-0.9.3/examples % ruby test_parameters.rb
test_parameters.rb:1:in `require': no such file to load -- xml/xslt
(LoadError)
from test_parameters.rb:1

I tried also loading 'rubygems', but effect is the same.
What I do wrong?

My distro is Archlinux, updated to current.

best regards,
--
michaÅ? gawron | rlu 283570 | mcv, email/jabber at mulabs.org/chrome.pl
:wq
1 Answer

mcv

6/5/2007 12:09:00 PM

0

*mcv* testified:

> Hello,
>
> I'm new to ruby.
> I've installed `gem install ruby-xslt --include-dependencies`. Everything
> seemed to install seamlessy. But when I'm trying to require 'xml/xslt' I
> get an error:
>
> mcv@asus gems/ruby-xslt-0.9.3/examples % ruby test_parameters.rb
> test_parameters.rb:1:in `require': no such file to load -- xml/xslt
> (LoadError)
> from test_parameters.rb:1
>
> I tried also loading 'rubygems', but effect is the same.
> What I do wrong?
>
> My distro is Archlinux, updated to current.
>
> best regards,

Ok, I ended up installing:

gem install libxslt-ruby --include-dependencies
gem install libxml-ruby --include-dependencies

But this haven't solved problem.
I found a .so file xslt_lib.so
in /usr/lib/ruby/gems/1.8/gems/ruby-xslt-0.9.3/lib/xml so
I did:

require 'xml/xslt_lib.so'

hoping that Ruby will know how to deal with .so libraries
and it seems to workâ?¦ butâ?¦

Is this a good solution?

--
michaÅ? gawron | rlu 283570 | mcv, email/jabber at mulabs.org/chrome.pl
:wq