In Files

  • rdoc/ri/cache.rb

Parent

Methods

Files

Class/Module Index [+]

Quicksearch

RDoc::RI::Cache

We represent everything known about all 'ri' files accessible to this program

Attributes

toplevel[R]

Public Class Methods

new(dirs) click to toggle source
 
               # File rdoc/ri/cache.rb, line 177
def initialize(dirs)
  # At the top level we have a dummy module holding the
  # overall namespace
  @toplevel = RDoc::RI::TopLevelEntry.new('', '::', nil)

  dirs.each do |dir|
    @toplevel.load_from(dir)
  end
end