Czy istnieje metoda alias_metoda dla metody klasy?

Rozważ następującą klasę: class Foo def an_inst_method 'instance method' end def self.a_class_method 'class method' end alias_method :a_new_inst_method, :an_inst_method end To nie jest problem i możesz dzwonić Foo.new.a_new_inst_methodbez problemu. Chciałbym mieć możliwość posiadania...