rdtool
makes certain assumptions about the format of method
names. Class or module methods should appear as
Class.method
,
instance methods as
Class#method
, and class or module
constants as
Class::Const
.
--- Tempfile::IOWRITE
Open the file write-only.
...
--- Tempfile.new( filename )
Constructs a temporary file in the given directory. The file
...
--- Tempfile#open
Reopens ((|aTempfile|)) using mode ``r+'', which allows reading
..
|