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.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/rdoc/ri.rb b/lib/rdoc/ri.rb
deleted file mode 100644
index 388cb12c70..0000000000
--- a/lib/rdoc/ri.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: false
-require '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, 'rdoc/ri/driver'
- autoload :Paths, 'rdoc/ri/paths'
- autoload :Store, 'rdoc/ri/store'
-
-end
-