From: Heesob Park Date: 2008-09-03T10:46:03+09:00 Subject: Re: Class.descendant_of? 2008/9/3 Ben Johnson : > Noob question: > > class A; end > class B < A; end > > B.kind_of?(A) > > Is there a method that will return true if the class is a descendant of > that class? > class A; end class B < A; end B < A => true Regards, Park Heesob