From: Trans Date: 2005-12-02T22:37:32+09:00 Subject: Re: Aliasing to an inherited method Okay, so put the class-level where it beleongs: puts "Is __new__ available? #{method( :__new__ )}" class << self alias_method :new, :__new__ end T.