summaryrefslogtreecommitdiff
path: root/libexec/irb
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/irb')
-rwxr-xr-xlibexec/irb11
1 files changed, 11 insertions, 0 deletions
diff --git a/libexec/irb b/libexec/irb
new file mode 100755
index 0000000000..c64ee85fbd
--- /dev/null
+++ b/libexec/irb
@@ -0,0 +1,11 @@
+#!/usr/bin/env ruby
+#
+# irb.rb - interactive ruby
+# $Release Version: 0.9.6 $
+# $Revision$
+# by Keiju ISHITSUKA(keiju@ruby-lang.org)
+#
+
+require "irb"
+
+IRB.start(__FILE__)