What is an easy way to find out what methods/properties that a ruby object exposes?

As an example to get member information for a string, in PowerShell, you can do

"" | get-member

In Python,

dir("")

Is there such an easy way to discover member information of a Ruby object?

link|improve this question

feedback

4 Answers

Two ways to get an object's methods:

my_object.methods
MyObjectClass.instance_methods

One thing I do to prune the list of inherited methods from the Object base class:

my_object.methods - Object.instance_methods

To list an object's attributes:

object.attributes
link|improve this answer
1  
#attributes is AR specific; for a plain ruby object there's #instance_variables. Also, you can pass false as an argument to #methods to skip inherited ones. – noodl Jan 20 '11 at 13:07
@noodl, thanks. I meant instance_variables, but have too much Rails in my head :) – Mark Thomas Jan 20 '11 at 17:06
feedback
object.methods

will return an array of methods in object

link|improve this answer
feedback

Ruby doesn't have properties. Every time you want to access an instance variable within another object, you have to use a method to access it.

link|improve this answer
It's great to know that everything is a method. Thanks Andrew – Sung Jan 21 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.