From: Trans Date: 2007-03-07T22:05:05+09:00 Subject: Re: object_* and instance_* methods Correction... > namespace :meta do > > def send(obj, meth, *args) should be def send(meth, *args) > Object.instance_method(:send).bind(obj).call(meth, *args) > end > > def class(obj) should be def class > Object.instance_method(:class).bind(obj).call > end But anyway, you get the idea. T.