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
}
all_files

all_files() Instance Public methods All TopLevels known to

2015-05-04 16:15:58
friendly_path

friendly_path() Instance Public methods Friendly rendition of path

2015-05-04 17:26:28
find_class_named_from

find_class_named_from(name, from) Instance Public methods Finds the class with

2015-05-04 17:01:04
all_classes

all_classes() Instance Public methods Returns all classes discovered by

2015-05-04 16:08:40
class_methods

class_methods() Instance Public methods

2015-05-04 16:40:27
find_c_enclosure

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

2015-05-04 16:53:38
all_classes_and_modules

all_classes_and_modules() Instance Public methods Returns all classes and modules

2015-05-04 16:10:14
unique_classes_and_modules

unique_classes_and_modules() Instance Public methods Returns the unique classes

2015-05-04 19:02:06
title=

title=(title) Instance Public methods Sets the title page for this

2015-05-04 18:58:09
load_class

load_class(klass_name) Instance Public methods Loads ri data for klass_name

2015-05-04 17:37:12