summaryrefslogtreecommitdiff
path: root/trunk/lib/irb/cmd/help.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/lib/irb/cmd/help.rb')
-rw-r--r--trunk/lib/irb/cmd/help.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/trunk/lib/irb/cmd/help.rb b/trunk/lib/irb/cmd/help.rb
deleted file mode 100644
index e1f47e2c97..0000000000
--- a/trunk/lib/irb/cmd/help.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-#
-# help.rb - helper using ri
-# $Release Version: 0.9.5$
-# $Revision$
-#
-# --
-#
-#
-#
-
-require 'rdoc/ri/driver'
-require 'rdoc/ri/util'
-
-module IRB
- module ExtendCommand
- module Help
- begin
- @ri = RDoc::RI::Driver.new
- rescue SystemExit
- else
- def self.execute(context, *names)
- names.each do |name|
- begin
- @ri.get_info_for(name.to_s)
- rescue RDoc::RI::Error
- puts $!.message
- end
- end
- nil
- end
- end
- end
- end
-end