1require 'rdoc'
2
3##
4# Namespace for the ri command line tool's implementation.
5#
6# See <tt>ri --help</tt> for details.
7
8module RDoc::RI
9
10  ##
11  # Base RI error class
12
13  class Error < RDoc::Error; end
14
15  autoload :Driver, 'rdoc/ri/driver'
16  autoload :Paths,  'rdoc/ri/paths'
17  autoload :Store,  'rdoc/ri/store'
18
19end
20
21