The require_gem seemed to work (it returned true), but I still had the error below. No worries though, I just downloaded the rb code and included it directly - it works great now! NameError: uninitialized constant GMailer from (irb):9 On 3-Sep-05, at 2:14 PM, Mark Hubbart wrote: > On 9/3/05, David Teare <dteare / tearesolutions.com> wrote: > >> Thanks for sharing this as a GEM. >> >> I am having some troubles getting it to work. I installed gmailer >> v0.8 but I can't figure out how to "require" it. Am I missing >> something obvious? >> >> $ gem list | grep gmail >> gmailer (0.0.8) >> $ ruby --version >> ruby 1.8.2 (2004-12-25) [powerpc-darwin7.8.0] >> $ gem --version >> 0.8.10 >> >> $ irb >> irb(main):001:0> require "GMail" >> LoadError: No such file to load -- GMail >> from (irb):1:in `require' >> from (irb):1 >> irb(main):002:0> require "GMailer" >> LoadError: No such file to load -- GMailer >> from (irb):2:in `require' >> from (irb):2 >> irb(main):003:0> require "gmailer" >> LoadError: No such file to load -- gmailer >> from (irb):3:in `require' >> from (irb):3 >> > > perhaps try: > >>> require 'rubygems' >>> require_gem 'gmailer' >>> > > cheers, > Mark > >