Seem to have a slight problem with the mongrel gem, unless I'm using the
custom require supplied by rubygems, I can't get the gem to work.
The following:
p require 'rubygems'
p require_gem 'mongrel'
p Mongrel
gives me:
true
true
-:3: uninitialized constant Mongrel (NameError)
The following, however, works:
p require 'ubygems'
p require 'mongrel'
p Mongrel