Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In irb run

> Rake::FileList::ARRAY_METHODS
=> [.....array full of methods...]
> Rake::FileList::ARRAY_METHODS.sort

sort works also and I'm fairly sure that all the other inherited and Array methods will work. But

> Rake::FileList::ARRAY_METHODS(false)
=> error trace....

That is not going to give me just Rake::FileList::ARRAY_METHODS. The code for that in the Module is

# List of array methods (that are not in +Object+) that need to be
# delegated.
ARRAY_METHODS = (Array.instance_methods - Object.instance_methods).map { |n| n.to_s }

Sorry for the formatting. I'm just too new to the semantics of this editor.

The question is "Can I get proof that these are not inherited from Object without digging into the code for Rake?"

Why couldn't he have just used Array.instance_methods false to keep out the Object methods?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.