Project

General

Profile

Actions

Bug #3070

closed

Delegator#method_missing doesn't pass along block args

Added by stouset (Stephen Touset) almost 14 years ago. Updated almost 13 years ago.

Status:
Closed
Assignee:
-
ruby -v:
1.8.7 (2008-08-11 patchlevel 72)
[ruby-core:29170]

Description

=begin
The particular instance of this bug I'm running up against is that Tempfile delegates to File. I've written a method on File which accepts a block, but any time it's called from a Tempfile, Ruby raises a LocalJumpError, because the block argument hasn't been passed.

Seems like a pretty easy fix.

def method_missing(m, *args, &block)
target = self.getobj
unless target.respond_to?(m)
super(m, *args, &block)
end
target.send(m, *args, &block)
end
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0