From: 7stud -- Date: 2011-08-23T11:08:41+09:00 Subject: Re: Gritty Details of super() By the way, when I say that the singleton methods are in another class, that isn't just speculation: class Dog def Dog.greet puts 'hi' end def eat puts 'chomp, chomp' end end puts Dog puts Dog.class puts "-" * 20 puts Dog.singleton_class puts Dog.singleton_class.class --output:-- Dog Class -------------------- # Class -- Posted via http://www.ruby-forum.com/.