From: Pit Capitain Date: 2006-09-16T19:40:49+09:00 Subject: Re: Ruby keywords vs methods Chris Roos schrieb: > It'd be nice if, on redefining an existing method, we could get a > warning to allow us a quicker route to the problem. Chris, just call Ruby with the -w command line option. With your example class Foo def foo p 'foo' end end class Foo def foo p 'new foo' end end I get warning: method redefined; discarding old foo Regards, Pit