Type:
Class

A set of rdoc data for a single project (gem, path, etc.).

The store manages reading and writing ri data for a project and maintains a cache of methods, classes and ancestors in the store.

The store maintains a cache of its contents for faster lookup. After adding items to the store it must be flushed using save_cache. The cache contains the following structures:

@cache = {
  :ancestors        => {}, # class name => ancestor names
  :attributes       => {}, # class name => attributes
  :class_methods    => {}, # class name => class methods
  :instance_methods => {}, # class name => instance methods
  :modules          => [], # classes and modules in this store
  :pages            => [], # page names
}
fix_basic_object_inheritance

fix_basic_object_inheritance() Instance Public methods Fixes the erroneous BasicObject

2015-05-04 17:25:00
unique_classes_and_modules

unique_classes_and_modules() Instance Public methods Returns the unique classes

2015-05-04 19:02:06
find_c_enclosure

find_c_enclosure(variable) Instance Public methods Finds the enclosure (namespace)

2015-05-04 16:53:38
all_files

all_files() Instance Public methods All TopLevels known to

2015-05-04 16:15:58