In Files

  • rdoc/ri/ri_descriptions.rb

Files

Class/Module Index [+]

Quicksearch

RI::Description

Attributes

comment[RW]
full_name[RW]
name[RW]

Public Class Methods

deserialize(from) click to toggle source
 
               # File rdoc/ri/ri_descriptions.rb, line 71
def Description.deserialize(from)
  YAML.load(from)
end
            

Public Instance Methods

<=>(other) click to toggle source
 
               # File rdoc/ri/ri_descriptions.rb, line 75
def <=>(other)
  @name <=> other.name
end
            
serialize() click to toggle source
 
               # File rdoc/ri/ri_descriptions.rb, line 67
def serialize
  self.to_yaml
end