A normal class, neither singleton nor anonymous

Methods
A
D
Instance Public methods
ancestors()

Appends the superclass, if any, to the included modules.

# File ../ruby/lib/rdoc/normal_class.rb, line 11
def ancestors
  superclass ? super + [superclass] : super
end
definition()

The definition of this class, class MyClassName

# File ../ruby/lib/rdoc/normal_class.rb, line 18
def definition
  "class #{full_name}"
end