From: "Iñaki Baz Castillo" Date: 2011-03-05T03:14:19+09:00 Subject: Removing methods from an inherited class Hi, if class A contains method "hello" and class B inherits from A, is it possible to remove method "hello" in the definition of class B? Maybe a workaround could be making "hello" method private in class B. NOTE: I do know that I can override "hello" method (something as "def hello; nil; end") but I don't want it. Thanks for any suggestion. -- Iñaki Baz Castillo