ri.rb 315 B

1234567891011121314151617181920
  1. require 'rdoc'
  2. ##
  3. # Namespace for the ri command line tool's implementation.
  4. #
  5. # See <tt>ri --help</tt> for details.
  6. module RDoc::RI
  7. ##
  8. # Base RI error class
  9. class Error < RDoc::Error; end
  10. autoload :Driver, 'rdoc/ri/driver'
  11. autoload :Paths, 'rdoc/ri/paths'
  12. autoload :Store, 'rdoc/ri/store'
  13. end