hello fellow rubyists,
is there an elegant way to define a singleton method from a given symbol
without using eval? what i am doing is this:
def make_wrapper object, method
eval %{
def object.#{method}
# do something here
super # call the wrapped method
end
}
end
example of usage:
make_wrapper STDOUT, :puts
using eval works, but it seems not to be the best solution. is there
annother way do define methods from a given symbol?
– henon
On 3/7/06, Meinrad R. [email protected] wrote:
super # call the wrapped method
end
}
end
sorry the above code does not work, (needs to be done using
object.instance_eval) but you get the idea what i mean
example of usage:
Meinrad R. wrote:
end
}
end
example of usage:
make_wrapper STDOUT, :puts
using eval works, but it seems not to be the best solution. is there
annother way do define methods from a given symbol?
Are you sure the code you presented actually works? IMHO your code will
fail if the method is defined in the same class (i.e. no “super”
possible).
You could use Delegator for this. And, if the method you want to wrap
does not use a block define_method usually works quite well.
Kind regards
robert
On 3/7/06, Robert K. [email protected] wrote:
Meinrad R. wrote:
[snipped]
Are you sure the code you presented actually works? IMHO your code will
fail if the method is defined in the same class (i.e. no “super”
possible).
afaik calling super in a singleton method calls the overridden method of
that object (of course i assert that the method to be wrapped exists).
here is the working code snippet:
def make_wrapper object, method
object.instance_eval %{
def self.#{method}(*args, &block)
puts “wrapped method #{method}”
super
end
}
end
You could use Delegator for this. And, if the method you want to wrap
does not use a block define_method usually works quite well.
ah, object.send( :define_method) is what i was looking for. thanks
Kind regards