source: extensions/gsdl-video/trunk/installed/cmdline/bin/ri@ 18425

Last change on this file since 18425 was 18425, checked in by davidb, 15 years ago

Video extension to Greenstone

File size: 1.5 KB
Line 
1#!/research/code/gsdl-video-import/trunk/installed/cmdline/bin/ruby
2# usage:
3#
4# ri name...
5#
6# where name can be
7#
8# Class | Class::method | Class#method | Class.method | method
9#
10# All names may be abbreviated to their minimum unbiguous form. If a name
11# _is_ ambiguous, all valid options will be listed.
12#
13# The form '.' method matches either class or instance methods, while
14# #method matches only instance and ::method matches only class methods.
15#
16#
17# == Installing Documentation
18#
19# 'ri' uses a database of documentation built by the RDoc utility.
20#
21# So, how do you install this documentation on your system?
22# It depends on how you installed Ruby.
23#
24# <em>If you installed Ruby from source files</em> (that is, if it some point
25# you typed 'make' during the process :), you can install the RDoc
26# documentation yourself. Just go back to the place where you have
27# your Ruby source and type
28#
29# make install-doc
30#
31# You'll probably need to do this as a superuser, as the documentation
32# is installed in the Ruby target tree (normally somewhere under
33# <tt>/usr/local</tt>.
34#
35# <em>If you installed Ruby from a binary distribution</em> (perhaps
36# using a one-click installer, or using some other packaging system),
37# then the team that produced the package probably forgot to package
38# the documentation as well. Contact them, and see if they can add
39# it to the next release.
40#
41
42
43require 'rdoc/ri/ri_driver'
44
45######################################################################
46
47ri = RiDriver.new
48ri.process_args
49
Note: See TracBrowser for help on using the repository browser.