In Files

  • rdoc/ri/ri_cache.rb

Parent

Methods

Files

Class/Module Index [+]

Quicksearch

RI::RiCache

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

Attributes

toplevel[R]

Public Class Methods

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

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