From: Yukihiro Matsumoto Date: 2007-11-02T22:13:57+09:00 Subject: Re: Get only the non-inherited methods of a class Hi, In message "Re: Get only the non-inherited methods of a class" on Fri, 2 Nov 2007 21:05:57 +0900, Max Williams writes: |Does anyone know how to get the methods of a class in such a way as to |*not* get inherited ones? Giving false to #methods. Stringh.methods => ["inspect", "send", "class_eval",... String.methods(false) => [] matz.