I am having a slight problem getting the
rmagick gem loaded with rails...

I can do this:

require 'RMagick'
=> true
Magick.inspect
=> "Magick"

but this does not work:

require 'rubygems'
=> true
require_gem 'rmagick'
=> true
Magick.inspect
NameError: uninitialized constant Magick
         from (irb):3

any ideas?