ancestors()
Appends the superclass, if any, to the included modules.
# File lib/rdoc/normal_class.rb, line 11 def ancestors superclass ? super + [superclass] : super end