2017-11-27 10:45:24 +00:00
|
|
|
# frozen_string_literal: true
|
2008-01-08 09:07:31 +00:00
|
|
|
require 'rdoc'
|
|
|
|
|
2010-04-01 07:45:16 +00:00
|
|
|
##
|
|
|
|
# Namespace for the ri command line tool's implementation.
|
|
|
|
#
|
|
|
|
# See <tt>ri --help</tt> for details.
|
|
|
|
|
2008-07-18 00:46:16 +00:00
|
|
|
module RDoc::RI
|
|
|
|
|
2010-04-01 07:45:16 +00:00
|
|
|
##
|
|
|
|
# Base RI error class
|
|
|
|
|
2008-07-18 00:46:16 +00:00
|
|
|
class Error < RDoc::Error; end
|
|
|
|
|
2012-11-27 04:28:14 +00:00
|
|
|
autoload :Driver, 'rdoc/ri/driver'
|
|
|
|
autoload :Paths, 'rdoc/ri/paths'
|
|
|
|
autoload :Store, 'rdoc/ri/store'
|
2008-01-08 09:07:31 +00:00
|
|
|
|
2012-11-27 04:28:14 +00:00
|
|
|
end
|
2010-04-01 07:45:16 +00:00
|
|
|
|