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