A singleton class
Adds the superclass to the included modules.
Source: show | on GitHub
# File ruby/lib/rdoc/single_class.rb, line 10 def ancestors superclass ? super + [superclass] : super end
The definition of this singleton class, class << MyClassName
class << MyClassName
# File ruby/lib/rdoc/single_class.rb, line 21 def definition "class << #{full_name}" end