From: Intransition Date: 2010-11-01T04:49:20+09:00 Subject: Re: Constant lookup as-if toplevel On Oct 31, 12:28 am, John Mair wrote: > err, that should be: > >     class Scope >       def self.const_missing(const) >         Object.const_get(const) >       end >     end Nice. I removed `self.` b/c Scope is a self extended module, and it looks good. Thanks.