summaryrefslogtreecommitdiff
path: root/lib/rdoc/ri.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/ri.rb')
-rw-r--r--lib/rdoc/ri.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/rdoc/ri.rb b/lib/rdoc/ri.rb
deleted file mode 100644
index 0af05f729f..0000000000
--- a/lib/rdoc/ri.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# frozen_string_literal: true
-require_relative '../rdoc'
-
-##
-# Namespace for the ri command line tool's implementation.
-#
-# See <tt>ri --help</tt> for details.
-
-module RDoc::RI
-
- ##
- # Base RI error class
-
- class Error < RDoc::Error; end
-
- autoload :Driver, "#{__dir__}/ri/driver"
- autoload :Paths, "#{__dir__}/ri/paths"
- autoload :Store, "#{__dir__}/ri/store"
-
-end