mirror of
https://github.com/ruby/ruby.git
synced 2026-01-29 13:34:17 +00:00
object reference, nodoc for class aliases, verbatim === lines. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
13 lines
188 B
Ruby
Executable File
13 lines
188 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
begin
|
|
gem 'rdoc'
|
|
rescue NameError => e # --disable-gems
|
|
raise unless e.name == :gem
|
|
rescue Gem::LoadError
|
|
end
|
|
|
|
require 'rdoc/ri/driver'
|
|
|
|
RDoc::RI::Driver.run ARGV
|