2017-11-27 05:45:24 -05:00
|
|
|
# frozen_string_literal: true
|
2008-01-08 04:07:31 -05:00
|
|
|
require 'rdoc'
|
|
|
|
|
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
|
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
autoload :Driver, 'rdoc/ri/driver'
|
|
|
|
autoload :Paths, 'rdoc/ri/paths'
|
|
|
|
autoload :Store, 'rdoc/ri/store'
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
end
|
2010-04-01 03:45:16 -04:00
|
|
|
|