Class RI::Description
In: ri/ri_descriptions.rb
Parent: Object

Methods

<=>   deserialize   serialize  

Attributes

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

Public Class methods

[Source]

    # File ri/ri_descriptions.rb, line 71
71:     def Description.deserialize(from)
72:       YAML.load(from)
73:     end

Public Instance methods

[Source]

    # File ri/ri_descriptions.rb, line 75
75:     def <=>(other)
76:       @name <=> other.name
77:     end

[Source]

    # File ri/ri_descriptions.rb, line 67
67:     def serialize
68:       self.to_yaml
69:     end

[Validate]