In Files

  • rdoc/ri/descriptions.rb

Parent

Methods

Files

Class/Module Index [+]

Quicksearch

RDoc::RI::NamedThing

Descriptions are created by RDoc (in ri_generator) and written out in serialized form into the documentation tree. ri then reads these to generate the documentation

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
 
               # File rdoc/ri/descriptions.rb, line 12
def initialize(name)
  @name = name
end
            

Public Instance Methods

<=>(other) click to toggle source
 
               # File rdoc/ri/descriptions.rb, line 16
def <=>(other)
  @name <=> other.name
end
            
eql?(other) click to toggle source
 
               # File rdoc/ri/descriptions.rb, line 24
def eql?(other)
  @name.eql?(other)
end
            
hash() click to toggle source
 
               # File rdoc/ri/descriptions.rb, line 20
def hash
  @name.hash
end