Module RiDisplay
In: rdoc/ri/ri_display.rb

This is a kind of ‘flag’ module. If you want to write your own ‘ri’ display module (perhaps because you‘r writing an IDE or somesuch beast), you simply write a class which implements the various ‘display’ methods in ‘DefaultDisplay’, and include the ‘RiDisplay’ module in that class.

To access your class from the command line, you can do

   ruby -r <your source file>  ../ri ....

If folks really want to do this from the command line, I‘ll build an option in

Methods

Public Class methods

[Source]

# File rdoc/ri/ri_display.rb, line 22
  def RiDisplay.append_features(display_class)
    @@display_class = display_class
  end

[Source]

# File rdoc/ri/ri_display.rb, line 26
  def RiDisplay.new(*args)
    @@display_class.new(*args)
  end

[Validate]

ruby-doc.org is a service of James Britt and Happy Camper Studios, a Ruby application development company in Phoenix, AZ.

Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.

For more information on the Ruby programming language, visit ruby-lang.org.

Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.