From: Victor Deryagin Date: 2011-07-31T17:48:22+09:00 Subject: Re: Documentation in Ruby "amir e." writes: > I have a problem with Ruby Reference. How can I see all the methods of a > class? Use 'Class#instance_methods' method. 'Array.instance_methods', for.example. By default it returns all class' instance methods, if you pass 'false' as an argument to it - only those defined in class itself, without ancestors'