2008-01-08 05:18:41 -05:00
|
|
|
require 'yaml'
|
2008-01-13 22:34:05 -05:00
|
|
|
require 'rdoc/markup/fragments'
|
2008-01-08 05:18:41 -05:00
|
|
|
require 'rdoc/ri'
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
##
|
2008-01-08 05:18:41 -05:00
|
|
|
# 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
|
|
|
|
|
2008-04-23 11:27:09 -04:00
|
|
|
class RDoc::RI::NamedThing
|
2008-01-08 05:18:41 -05:00
|
|
|
attr_reader :name
|
|
|
|
def initialize(name)
|
|
|
|
@name = name
|
|
|
|
end
|
2008-04-26 12:14:19 -04:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
def <=>(other)
|
|
|
|
@name <=> other.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def hash
|
|
|
|
@name.hash
|
|
|
|
end
|
|
|
|
|
|
|
|
def eql?(other)
|
|
|
|
@name.eql?(other)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-04-23 11:27:09 -04:00
|
|
|
class RDoc::RI::AliasName < RDoc::RI::NamedThing; end
|
2008-01-08 05:18:41 -05:00
|
|
|
|
2008-04-23 11:27:09 -04:00
|
|
|
class RDoc::RI::Attribute < RDoc::RI::NamedThing
|
2008-01-08 05:18:41 -05:00
|
|
|
attr_reader :rw, :comment
|
2008-04-26 12:14:19 -04:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
def initialize(name, rw, comment)
|
|
|
|
super(name)
|
|
|
|
@rw = rw
|
|
|
|
@comment = comment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc::RI::Constant < RDoc::RI::NamedThing
|
|
|
|
attr_reader :value, :comment
|
2008-04-26 12:14:19 -04:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
def initialize(name, value, comment)
|
|
|
|
super(name)
|
|
|
|
@value = value
|
|
|
|
@comment = comment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc::RI::IncludedModule < RDoc::RI::NamedThing; end
|
|
|
|
|
|
|
|
class RDoc::RI::MethodSummary < RDoc::RI::NamedThing
|
|
|
|
def initialize(name="")
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc::RI::Description
|
|
|
|
attr_accessor :name
|
|
|
|
attr_accessor :full_name
|
|
|
|
attr_accessor :comment
|
|
|
|
|
|
|
|
def serialize
|
|
|
|
self.to_yaml
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.deserialize(from)
|
|
|
|
YAML.load(from)
|
|
|
|
end
|
|
|
|
|
|
|
|
def <=>(other)
|
|
|
|
@name <=> other.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc::RI::ModuleDescription < RDoc::RI::Description
|
|
|
|
|
|
|
|
attr_accessor :class_methods
|
|
|
|
attr_accessor :instance_methods
|
|
|
|
attr_accessor :attributes
|
|
|
|
attr_accessor :constants
|
|
|
|
attr_accessor :includes
|
|
|
|
|
2008-06-04 05:37:38 -04:00
|
|
|
# merge in another class description into this one
|
2008-01-08 05:18:41 -05:00
|
|
|
def merge_in(old)
|
|
|
|
merge(@class_methods, old.class_methods)
|
|
|
|
merge(@instance_methods, old.instance_methods)
|
|
|
|
merge(@attributes, old.attributes)
|
|
|
|
merge(@constants, old.constants)
|
|
|
|
merge(@includes, old.includes)
|
|
|
|
if @comment.nil? || @comment.empty?
|
|
|
|
@comment = old.comment
|
|
|
|
else
|
|
|
|
unless old.comment.nil? or old.comment.empty? then
|
2008-01-13 22:34:05 -05:00
|
|
|
@comment << RDoc::Markup::Flow::RULE.new
|
2008-01-08 05:18:41 -05:00
|
|
|
@comment.concat old.comment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def display_name
|
|
|
|
"Module"
|
|
|
|
end
|
|
|
|
|
|
|
|
# the 'ClassDescription' subclass overrides this
|
|
|
|
# to format up the name of a parent
|
|
|
|
def superclass_string
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def merge(into, from)
|
|
|
|
names = {}
|
|
|
|
into.each {|i| names[i.name] = i }
|
|
|
|
from.each {|i| names[i.name] = i }
|
|
|
|
into.replace(names.keys.sort.map {|n| names[n]})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc::RI::ClassDescription < RDoc::RI::ModuleDescription
|
|
|
|
attr_accessor :superclass
|
|
|
|
|
|
|
|
def display_name
|
|
|
|
"Class"
|
|
|
|
end
|
|
|
|
|
|
|
|
def superclass_string
|
|
|
|
if @superclass && @superclass != "Object"
|
|
|
|
@superclass
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class RDoc::RI::MethodDescription < RDoc::RI::Description
|
|
|
|
|
|
|
|
attr_accessor :is_class_method
|
|
|
|
attr_accessor :visibility
|
|
|
|
attr_accessor :block_params
|
|
|
|
attr_accessor :is_singleton
|
|
|
|
attr_accessor :aliases
|
|
|
|
attr_accessor :is_alias_for
|
|
|
|
attr_accessor :params
|
|
|
|
|
|
|
|
end
|
|
|
|
|