Flowdock
method

to_s

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: RDoc::NormalClass
to_s() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/normal_class.rb, line 47
  def to_s # :nodoc:
    display = "#{self.class.name} #{self.full_name}"
    if superclass
      display += ' < ' + (superclass.is_a?(String) ? superclass : superclass.full_name)
    end
    display += ' -> ' + is_alias_for.to_s if is_alias_for
    display
  end
Register or log in to add new notes.