Sha256: 4442e36c044de803d25e72ff55548eba71d00150ea90b650553586813d8964da
Contents?: true
Size: 374 Bytes
Versions: 19
Compression:
Stored size: 374 Bytes
Contents
# 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
Version data entries
19 entries across 17 versions & 6 rubygems