diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-02 16:45:35 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-10-02 16:45:35 +0000 |
commit | 29cef5f795043a048a58874d90de0dfe01aa12ea () | |
tree | 6ae42a518c1c5705b8f097668d2b83413da0b6ec /lib/shell | |
parent | 8815306dc5aadd777c887bbd8de7057598ad709c (diff) |
use Object#class instead of deprecated Object#type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/shell/command-processor.rb | 4 | ||||
-rw-r--r-- | lib/shell/filter.rb | 6 | ||||
-rw-r--r-- | lib/shell/system-command.rb | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -49,7 +49,7 @@ class Shell rescue LoadError, Errno::ENOENT rescue print "load error: #{rc}\n" - print $!.type, ": ", $!, "\n" for err in $@[0, [email protected] - 2] print "\t", err, "\n" end @@ -277,7 +277,7 @@ class Shell when IO AppendIO.new(@shell, to, filter) else - Shell.Fail CanNotMethodApply, "append", to.type end end @@ -47,7 +47,7 @@ class Shell self.input = src self else - Filter.Fail CanNotMethodApply, "<", to.type end end @@ -63,7 +63,7 @@ class Shell when IO each(){|l| to << l} else - Filter.Fail CanNotMethodApply, ">", to.type end self end @@ -72,7 +72,7 @@ class Shell begin Shell.cd(@shell.pwd).append(to, self) rescue CanNotMethodApply - Shell.Fail CanNotMethodApply, ">>", to.type end end @@ -15,8 +15,8 @@ require "shell/filter" class Shell class SystemCommand < Filter def initialize(sh, command, *opts) - if t = opts.find{|opt| !opt.kind_of?(String) && opt.type} - Shell.Fail TypeError, t.type, "String" end super(sh) @command = command |