* lib/irb/cmd/help.rb: fixed irb's "help" command. [ruby-core:22310].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2009-07-21 12:41:01 +00:00
parent 623cfccb6f
commit 7203e59f27
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Tue Jul 21 21:37:19 2009 Keiju Ishitsuka <keiju@emperor2.pendome>
* lib/irb/cmd/help.rb: fixed irb's "help" command. [ruby-core:22310].
Tue Jul 21 20:41:20 2009 Keiju Ishitsuka <keiju@emperor2.pendome>
* lib/tracer.rb: no show lines unkonwn line number. [ruby-core:22096],

View File

@ -11,17 +11,19 @@
require 'rdoc/ri/driver'
require 'rdoc/ri/util'
require "irb/cmd/nop.rb"
module IRB
module ExtendCommand
module Help
class Help<Nop
begin
@ri = RDoc::RI::Driver.new
Ri = RDoc::RI::Driver.new
rescue SystemExit
else
def self.execute(context, *names)
def execute(*names)
names.each do |name|
begin
@ri.get_info_for(name.to_s)
Ri.get_info_for(name.to_s)
rescue RDoc::RI::Error
puts $!.message
end