Current Path : /proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/opt/alt/ruby22/lib64/ruby/2.2.0/irb/cmd/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/opt/alt/ruby22/lib64/ruby/2.2.0/irb/cmd/help.rb |
# # help.rb - helper using ri # $Release Version: 0.9.6$ # $Revision: 38358 $ # # -- # # # require 'rdoc/ri/driver' require "irb/cmd/nop.rb" # :stopdoc: module IRB module ExtendCommand class Help<Nop begin Ri = RDoc::RI::Driver.new rescue SystemExit else def execute(*names) if names.empty? Ri.interactive return end names.each do |name| begin Ri.display_name(name.to_s) rescue RDoc::RI::Error puts $!.message end end nil end end end end end # :startdoc: