blob: b9c4141a5e20250dcd54c4c26bb257077fd9d2c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
##
# Generates ri data files
class RDoc::Generator::RI
RDoc::RDoc.add_generator self
##
# Description of this generator
DESCRIPTION = 'creates ri data files'
##
# Set up a new ri generator
def initialize store, options #:not-new:
@options = options
@store = store
@store.path = '.'
end
##
# Writes the parsed data store to disk for use by ri.
def generate
@store.save
end
end
|