On Mon, Nov 08, 2004 at 11:46:07PM +0900, Dave Thomas wrote: > > On Nov 8, 2004, at 8:11, Michael Neumann wrote: > > >Hm, and how about methods inherited from a superclass? Shouldn't they > >be > >shown there either? Or at least in a section called "methods inherited > >by superclass". > > All the way up to Object? No, you're right, that's a bad idea. But would be nice, if method names in the documentation would be detected for superclasses. Example: class A def a; end end class B < A # Calls method a <----- def b end end So that "a" would be a pointer to A#a. But I can live very good with writing explicitly A#a. Regards, Michael