From: Yukihiro Matsumoto Date: 2004-11-12T10:52:21+09:00 Subject: Re: warning: redefining Object#initialize may cause infinite loop Hi, In message "Re: warning: redefining Object#initialize may cause infinite loop" on Fri, 12 Nov 2004 09:23:29 +0900, Stu writes: |so I did | |class Object | def initialize | initialise | end |end | |while it works, it throws the hissy error |warning: redefining Object#initialize may cause infinite loop | |I just want to supress the error in my code. At the risk of what warning message says? Try "$VERBOSE = nil" if you're sure. matz.