From: itsme213 Date: 2005-10-04T09:31:47+09:00 Subject: Re: Cannot subclass Class? "David A. Black" wrote in message > You can just define the method directly on the object -- you don't > need that second module: > > module M > def self.included(mod) > def mod.foo(n) > @foo = n > end > end > Thanks Rob, David! That's nice and succinct.