diff options
Diffstat (limited to 'lib/forwardable.rb')
-rw-r--r-- | lib/forwardable.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/forwardable.rb b/lib/forwardable.rb index 7f57f77f53..b845f76ec4 100644 --- a/lib/forwardable.rb +++ b/lib/forwardable.rb @@ -51,7 +51,7 @@ module Forwardable #{accessor}.__send__(:#{method}, *args, &block) rescue Exception [email protected]_if{|s| /^\\(__FORWARDABLE__\\):/ =~ s} unless Forwardable::debug - raise + Kernel::raise end end EOS @@ -79,7 +79,7 @@ module SingleForwardable #{accessor}.__send__(:#{method}, *args,&block) rescue Exception [email protected]_if{|s| /^\\(__FORWARDABLE__\\):/ =~ s} unless Forwardable::debug - raise + Kernel::raise end end EOS |