summaryrefslogtreecommitdiff
path: root/sample/irb.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/irb.rb')
-rw-r--r--sample/irb.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/sample/irb.rb b/sample/irb.rb
deleted file mode 100644
index 58f3699139..0000000000
--- a/sample/irb.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env ruby
-#
-# irb.rb - intaractive ruby
-# $Release Version: 0.7.3 $
-# $Revision$
-# $Date$
-# by Keiju ISHITSUKA(keiju@ishitsuka.com)
-#
-
-require "irb"
-
-if __FILE__ == $0
- IRB.start(__FILE__)
-else
- # check -e option
- if /^-e$/ =~ $0
- IRB.start(__FILE__)
- else
- IRB.initialize(__FILE__)
- end
-end