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

load_cache() Instance Public methods Loads cache file for this store

2015-05-04 17:35:19
title

title() Instance Public methods Gets the title for this

2015-05-04 18:56:23
cache_path

cache_path() Instance Public methods Path to the cache file

2015-05-04 16:35:50
save

save() Instance Public methods Saves all entries in the store

2015-05-04 18:31:10
find_unique

find_unique(all_hash) Instance Public methods Finds unique classes/modules defined

2015-05-04 17:21:33
main

main() Instance Public methods Gets the main page for this

2015-05-04 17:49:22
ancestors

ancestors() Instance Public methods Ancestors cache accessor. Maps a klass

2015-05-04 16:27:26
unique_modules

unique_modules() Instance Public methods Returns the unique modules discovered

2015-05-04 19:03:02
new

new(path = nil, type = nil) Class Public methods Creates a new

2015-05-04 15:48:25
method_file

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

2015-05-04 18:08:21