From: Ferenc Engard Date: 2002-08-25T03:40:36+09:00 Subject: same method as class and instance methods? Hi there, I want to use a method as a class method, but as I use it frequently in the classes' other methods, I do not want to prefix the method name with class name in these cases. Is there a language construct to use a method both as class and as instance methods? Anyway, I have a workaround as defining a method like: def methodName ClassName.methodName end Thanks: Circum