From: Caleb Tennis Date: 2006-01-17T05:22:55+09:00 Subject: Re: overriding Object::send On Monday 16 January 2006 15:11, Joe Van Dyk wrote: > Why doesn't this work? It works for me if I use "module Kernel" instead of "class Object". > class Object > alias_method :old_send, :send > def send meth, *args > STDERR.puts "#{ meth } was called" > old_send meth, args > end > end