From: Zach Dennis Date: 2003-11-07T13:37:05+09:00 Subject: Re: Inheritence Diagram of Ruby classes... Since this thread has came up I've been doing some digging, thanks to Eric Hodel and Austin for sparking my interest with their attachments and links. I've been doing some dabbling into the Kernel's public_method and private_method to determine what belongs to an object. I found it useful for myself today doing some Tk stuff so I thought I might pass it along. Here is a quick implementation of it: require 'tk' ar = TkRoot.public_methods ar.each{ |x| puts x } ar = TkRoot.private_methods ar.each{ |x| puts x } Zach