RichardSchollar wrote:
> I have only just started using Ruby (and am a total noob, in case this
> wasn't obvious ;-)) and was wondering if I type the following into irb
> (for instance) I don't see the "include" method listed:
> 
> Array.methods

You want: Array.instance_methods

(that is: not methods of the class Array object itself, but methods of 
objects which are instances of class Array)
-- 
Posted via http://www.ruby-forum.com/.