Listing Object.methods

Hello,
Tonight I was thinking that it would be handy to
have a way to list all the methods in a class but
not list any of the standard methods that it inherits
from its parent object enless they have been added
to by the class in question.

Something like this, but better.

`Foo.new.methods - Object.methods`

For example if Foo reimplenents .to_s then I would like to know about it.

···

--
Alex Combas
http://noodlejunkie.blogspot.com/

Hello,
Tonight I was thinking that it would be handy to
have a way to list all the methods in a class but
not list any of the standard methods that it inherits
from its parent object enless they have been added
to by the class in question.

Something like this, but better.

`Foo.new.methods - Object.methods`

As a workaround, you can do this:

  class << foo; self; end.instance_methods false

For example if Foo reimplenents .to_s then I would like to know about it.

Alex Combas

E

···

On 2006.01.28 18:39, Alex Combas wrote:

Do we really need a singleton class for that? I prefer:

self.class.instance_methods(false)

James Edward Gray II

···

On Jan 28, 2006, at 3:52 AM, Eero Saynatkari wrote:

On 2006.01.28 18:39, Alex Combas wrote:

Something like this, but better.

`Foo.new.methods - Object.methods`

As a workaround, you can do this:

  class << foo; self; end.instance_methods false

>>Something like this, but better.
>>
>>`Foo.new.methods - Object.methods`
>
>As a workaround, you can do this:
>
> class << foo; self; end.instance_methods false

Do we really need a singleton class for that? I prefer:

self.class.instance_methods(false)

Yep, otherwise singleton methods will not be included.

James Edward Gray II

E

···

On 2006.01.29 01:13, James Edward Gray II wrote:

On Jan 28, 2006, at 3:52 AM, Eero Saynatkari wrote:
>On 2006.01.28 18:39, Alex Combas wrote: