class RDoc::RI::Store

def initialize path, type = nil

def initialize path, type = nil
  @type = type
  @path = path
  @cache = {
    :class_methods    => {},
    :instance_methods => {},
    :attributes       => {},
    :modules          => [],
    :ancestors        => {},
  }
end