From 9ff1e787f915539b1980654e3d3d2013ff5c81d2 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Mon, 7 Jul 2008 07:38:25 +0000 Subject: wrong commit; sorry git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_6_269@17938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby_1_8_6/ext/tk/sample/irbtk.rb | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 ruby_1_8_6/ext/tk/sample/irbtk.rb (limited to 'ruby_1_8_6/ext/tk/sample/irbtk.rb') diff --git a/ruby_1_8_6/ext/tk/sample/irbtk.rb b/ruby_1_8_6/ext/tk/sample/irbtk.rb deleted file mode 100644 index 53ef10d0d1..0000000000 --- a/ruby_1_8_6/ext/tk/sample/irbtk.rb +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/local/bin/ruby -# -# irbtk.rb - irb with Ruby/Tk -# -# If you want to use 'multi-tk.rb', give option '--multi-tk'. -# And if you want to use 'remote-tk.rb', give option '--remote-tk'. -# If you want both, you don't need to give both options, because -# 'remote-tk.rb' includes 'multi-tk.rb'. -# ( There is no trouble even if you give both options. ) -# -require 'remote-tk' if ARGV.delete('--remote-tk') -require 'multi-tk' if ARGV.delete('--multi-tk') - -require "tk" -module Tk - MAINLOOP = Thread.new{ mainloop } -end - -require "irb" - -if __FILE__ == $0 - IRB.start(__FILE__) -else - # check -e option - if /^-e$/ =~ $0 - IRB.start(__FILE__) - else - IRB.setup(__FILE__) - end -end -- cgit v1.2.3