From: Michael Guterl Date: 2008-09-23T04:03:18+09:00 Subject: Re: 1.8.x public send? On Mon, Sep 22, 2008 at 1:40 PM, Trans wrote: > Oh crud, > > class A > def initialize > @b = B.new > end > def method_missing(s, *a, &b) > @b.__send__(s,*a,&b) > end > end > > class B > def method_missing(s,*a,&b) > "HERE" > end > end > > A.new.foo > > How to get "HERE"? > > Works for me. I just had to `puts A.new.foo`