------ art_15207_10377994.1147092739206 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Here's some simple code: def ClassA def my_method end end def ClassB < ClassA def my_new_method end end ----------- What is the best way to get a list of instance methods for ClassB, but that does not contain the parent class's methods? ClassB.instance_methods is returning all of them. I just want to see 'my_new_method'. Any ideas? ------ art_15207_10377994.1147092739206--