From: botp Date: 2008-01-10T18:58:28+09:00 Subject: Re: how to remove a method from an object ? On Jan 10, 2008 4:35 PM, Valerio Schiavoni wrote: > how can I remove a method from an object, without impacting future > instances of its class ? the method is defined in the class, if you remove it, others will be affected. try using singleton_method instead...(and yes, you can remove singleton methods w your hearts content; but since these methods belong to a particular object, you might not even bother removing.. :) kind regards -botp