In irbrc goodness, I touched briefly on my_methods, a method of discovering the methods of an object which are distinct from those inherited from Object. The method looks like this: Ruby | copy code |?1class Object2 def my_methods3 (self.methods - Object.methods).sort4 end5end I have since had the idea of extending it — now you [...]