GIF87a;
# # 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:
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
chws.rb | File | 486 B | 0644 |
|
fork.rb | File | 573 B | 0644 |
|
help.rb | File | 664 B | 0644 |
|
load.rb | File | 1.13 KB | 0644 |
|
nop.rb | File | 551 B | 0644 |
|
pushws.rb | File | 611 B | 0644 |
|
subirb.rb | File | 596 B | 0644 |
|