In Files

  • rdoc/ri/descriptions.rb

Files

Class/Module Index [+]

Quicksearch

RDoc::RI::Description

Attributes

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

Public Class Methods

deserialize(from) click to toggle source
 
               # File rdoc/ri/descriptions.rb, line 68
def self.deserialize(from)
  YAML.load(from)
end
            

Public Instance Methods

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