1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/irb/cmd/help.rb: support RDoc 3.7. fix [Bug #3760].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32286 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2011-06-29 13:51:30 +00:00
parent e31caff00e
commit 4f4f09d009
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Jun 29 22:49:10 2011 Keiju Ishitsuka <keiju@ishitsuka.com>
* lib/irb/cmd/help.rb: support RDoc 3.7. fix [Bug #3760].
Wed Jun 29 22:04:14 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* lib/tracer.rb: Tracer.on only if required by -r command-line option.

View file

@ -26,7 +26,7 @@ module IRB
end
names.each do |name|
begin
Ri.get_info_for(name.to_s)
Ri.display_name(name.to_s)
rescue RDoc::RI::Error
puts $!.message
end