2017-11-27 05:45:24 -05:00
|
|
|
# frozen_string_literal: true
|
2022-02-09 21:31:06 -05:00
|
|
|
require_relative '../rdoc'
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
##
|
|
|
|
# Namespace for the ri command line tool's implementation.
|
|
|
|
#
|
|
|
|
# See <tt>ri --help</tt> for details.
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
module RDoc::RI
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
##
|
|
|
|
# Base RI error class
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
class Error < RDoc::Error; end
|
|
|
|
|
2022-02-09 21:31:06 -05:00
|
|
|
autoload :Driver, "#{__dir__}/ri/driver"
|
|
|
|
autoload :Paths, "#{__dir__}/ri/paths"
|
|
|
|
autoload :Store, "#{__dir__}/ri/store"
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
end
|