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?