summaryrefslogtreecommitdiff
path: root/sample/irb.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/irb.rb')
-rw-r--r--sample/irb.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/sample/irb.rb b/sample/irb.rb
deleted file mode 100644
index 6746c59d42..0000000000
--- a/sample/irb.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env ruby
-#
-# irb.rb - intaractive ruby
-# $Release Version: 0.6 $
-# $Revision$
-# $Date$
-# by Keiju ISHITSUKA(Nippon Rational Inc.)
-#
-# --
-# Usage:
-#
-# irb.rb [options] file_name opts
-#
-#
-
-require "irb/main"
-
-if __FILE__ == $0
- IRB.start(__FILE__)
-else
- # check -e option
- if /^-e$/ =~ $0
- IRB.start(__FILE__)
- else
- IRB.initialize(__FILE__)
- end
-end