I've just noticed that that's probably the problem. but unfortunately, irb(main):001:0> require 'rubygems' LoadError: no such file to load -- rubygems On 8/8/07, Gordon Thiesfeld <gthiesfeld / gmail.com> wrote: > On Aug 8, 4:56 pm, "Simon Schuster" <significa... / gmail.com> wrote: > > successfully used gem to install the classifier library but I get this: > > > > irb(main):001:0> require 'classifier' > > LoadError: no such file to load -- classifier > > from (irb):1:in `require' > > from (irb):1:in `Kernel#binding' > > > > maybe the configurations for irb/ruby (doesn't work in 1.8 or 1.9) > > aren't aligned with where gem puts the libraries? thanks > > Did you require rubygems? > > >> require 'classifier' > LoadError: no such file to load -- classifier > from (irb):1:in `require' > from (irb):1 > >> require 'rubygems' > => true > >> require 'classifier' > c:0:Warning: require_gem is obsolete. Use gem instead. > Notice: for 10x faster LSI support, please install http://rb-gsl.rubyforge.org/ > => true > >> > > Gordon > > >