summaryrefslogtreecommitdiff
path: root/sample/irb.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-12 09:07:57 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-05-12 09:07:57 +0000
commit9da4f78db46764be6dae5e7e83ff48cbecb3fb23 (patch)
treec0805e6c95d6396e28e6129d88905c4dee085f4e /sample/irb.rb
parent014f2164ed7031a1c31604b290d2ab0cf1deacdc (diff)
2000-05-12
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/irb.rb')
-rw-r--r--sample/irb.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/sample/irb.rb b/sample/irb.rb
new file mode 100644
index 0000000000..38d184dfd0
--- /dev/null
+++ b/sample/irb.rb
@@ -0,0 +1,28 @@
+#!/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
+ tmp = ENV["TMP"] || ENV["TMPDIR"] || "/tmp"
+ if %r|#{tmp}/rb| =~ $0
+ IRB.start(__FILE__)
+ else
+ IRB.initialize(__FILE__)
+ end
+end