What is wrong with my ruby install, or is it me?

M

marc spitzer

Hello,

I am trying to put together my first ruby app, little database
and a command line client. I want to use sqllite for the db and
have 3.3.6 installed on a 32bit redhat 5 box along with ruby 1.8.5.
After looking around it looked like the best way to do this was with
rubygem which I installed, 0.9.4, along with the gem of sqlite3-ruby,
1.2.1, and I can not get the require to work:

[xxx@yyy tmp]$ cat tst.rb
#!/usr/bin/ruby

require 'sqlite3'

gives me:
[xxx@yyy tmp]$ ruby tst.rb
tst.rb:3:in `require': no such file to load -- sqlite3 (LoadError)
from tst.rb:3

in /usr/lib/ruby/gems/1.8/gems/ I have the following gems installed:
flexmock-0.6.4
sources-0.0.1
sqlite3-ruby-1.2.1

what am I doing wrong?

Thanks,

marc
 
S

Stefan Rusterholz

marc said:
Hello,

I am trying to put together my first ruby app, little database
and a command line client. I want to use sqllite for the db and
have 3.3.6 installed on a 32bit redhat 5 box along with ruby 1.8.5.
After looking around it looked like the best way to do this was with
rubygem which I installed, 0.9.4, along with the gem of sqlite3-ruby,
1.2.1, and I can not get the require to work:

[xxx@yyy tmp]$ cat tst.rb
#!/usr/bin/ruby

require 'sqlite3'

gives me:
[xxx@yyy tmp]$ ruby tst.rb
tst.rb:3:in `require': no such file to load -- sqlite3 (LoadError)
from tst.rb:3

in /usr/lib/ruby/gems/1.8/gems/ I have the following gems installed:
flexmock-0.6.4
sources-0.0.1
sqlite3-ruby-1.2.1

what am I doing wrong?

Thanks,

marc

You forgot to require 'rubygems' first.

Regards
Stefan
 
M

Michael Linfield

What is wrong with my ruby install, or is it me?

in both cases.....its you.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,161
Latest member
GertrudeMa
Top