From: Zed Shaw Date: 2006-02-02T16:03:31+09:00 Subject: Re: [ANN] Mongrel HTTP Library 0.2.0 (Fast And RubyForgified) Odd, not quite sure what would cause that. Can you try the soon to be announce 0.2.1 release and let me know if you get the same problems? Zed A. Shaw http://www.zedshaw.com/ On Feb 1, 2006, at 10:02 PM, Daniel Sheppard wrote: > 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 > >