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