From: Justin Bailey Date: 2006-08-24T05:49:37+09:00 Subject: Re: Support for singleton_class() (was Re: Call functions of superclass) On 8/23/06, ara.t.howard@noaa.gov wrote: > On Thu, 24 Aug 2006, James Edward Gray II wrote: > > > On Aug 23, 2006, at 3:13 PM, dblack@wobblini.net wrote: > > > >> # Sigh -- Matz, *please* can we have this? :-) > >> def singleton_class > >> class << self; self; end > >> end +100 - please give us singleton_class! > > much better, imho, and used all over my own code is > > def singleton_class &b > sc = class << self; self; end > b ? sc.module_eval &b : sc > end > > obj = Object.new +1 to this implementation.