I am wondering if there is a Ruby method call that shows only the methods defined by the Ruby object it's called from, as opposed to all the methods defined by its ancestor classes, which is what methods seems to do.
|
|
||||
|
|
|
If you want the methods defined by the object's class, but not those defined by its superclasses, you can get that by calling |
|||
|
|
|
I'm partial to |
|||
|
|
|
You have a few options -
|
||||