From: Trans Date: 2005-10-27T00:42:03+09:00 Subject: Re: A comparison by example of keyword argument styles Eric Mahurin wrote: > The "method" above is not meant to mean whatever method you > feel like. I'm talking about Object#method that returns a > Method object for the method name/symbol given as an argument. Ah, I see. I misinterpreted what you were asking for. Then try: define_method(:foo,&obj.method(:bar).to_proc) T.