2017-11-27 10:45:24 +00:00
|
|
|
# frozen_string_literal: true
|
2022-02-10 03:31:06 +01:00
|
|
|
require_relative '../rdoc'
|
2008-01-08 09:07:31 +00:00
|
|
|
|
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
|
|
|
|
|
2022-02-10 03:31:06 +01:00
|
|
|
autoload :Driver, "#{__dir__}/ri/driver"
|
|
|
|
autoload :Paths, "#{__dir__}/ri/paths"
|
|
|
|
autoload :Store, "#{__dir__}/ri/store"
|
2008-01-08 09:07:31 +00:00
|
|
|
|
2012-11-27 04:28:14 +00:00
|
|
|
end
|