From: ts Date: 2003-04-06T00:42:47+09:00 Subject: Re: Plugins (sort off) >>>>> "D" == Damphyr writes: D> Object.const_get("MyModule") D> and he's right. The reference in the PP book puts const_get in Module D> though - is there something hidden in there, or is it just an error in D> the reference? #const_get is a method of Module, this mean that the class Object inherit this method Now the module is defined in Object, this mean that you must retrieve this constant in Object. For example, if you want to retrieve the class File::Stat you must search the constant "Stat" in the class File pigeon% ruby -e 'p File.const_get("Stat")' File::Stat pigeon% Guy Decoux