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
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