Eric Hodel <drbrain / segment7.net> writes:
>>  Is it possible to make only one method of a class undumpable?
>
> No...
....
>
> Only objects can be undumpable, not methods.  You *can* make the object 
> that is returned by a method undumpable:
>
> class X
>    def meth
> 	obj = do_stuff
> 	obj.include DRbUndumped
>      return obj
>    end
> end
>

     Ah! Of course. Except you have to use obj.extend.
     Thanks for your guidance Eric.

 - Ville