A singleton class
Adds the superclass to the included modules.
# File lib/rdoc/single_class.rb, line 9 def ancestors superclass ? super + [superclass] : super end
The definition of this singleton class, class <<
MyClassName
# File lib/rdoc/single_class.rb, line 16 def definition "class << #{full_name}" end