From: py Date: 2007-03-23T22:50:07+09:00 Subject: Does ruby have a similar functions to the Python dir and help functions? In python during runtime, or in the python shell you can type: dir() or dir() and get a list of variables, methods etc that exist for that object. Also there is help(), or help(). does ruby have similar functions. I know that you can use ri....but is there a function to call while in the ruby shell? thanks