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:

1
2
3
4
5
6
7
8
@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
}
class_file
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

class_file(klass_name) Instance Public methods Path to the ri data for

2025-01-10 15:47:30
save_class
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

save_class(klass) Instance Public methods Writes the ri data for klass

2025-01-10 15:47:30
add_c_enclosure
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

add_c_enclosure(variable, namespace) Instance Public methods Adds module

2025-01-10 15:47:30
all_modules
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

all_modules() Instance Public methods Returns all modules discovered by

2025-01-10 15:47:30
source
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

source() Instance Public methods Source of the contents of this store.

2025-01-10 15:47:30
method_file
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

method_file(klass_name, method_name) Instance Public methods Path to the ri

2025-01-10 15:47:30
files_hash
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

files_hash() Instance Public methods

2025-01-10 15:47:30
add_file
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

add_file(absolute_name, relative_name = absolute_name) Instance Public methods Adds

2025-01-10 15:47:30
find_module_named
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

find_module_named(name) Instance Public methods Finds the module with name

2025-01-10 15:47:30
find_class_or_module
  • References/Ruby on Rails/Ruby/Classes/RDoc/RDoc::Store

find_class_or_module(name) Instance Public methods Finds the class or module

2025-01-10 15:47:30