Sha256: f6f939f1530cb70e92ed457623dae61b6a57e5ae3991a175cb8ddb17648d3e44
Contents?: true
Size: 602 Bytes
Versions: 7
Compression:
Stored size: 602 Bytes
Contents
class Proc # Bind a Proc to an object returning a Method. # # NOTE: This version comes from Rails. The old Facets # version used thread.rb, but I no longer think # the implementaiton is thread critical. Please # make a bug report if this proves wrong. def bind(object) block, time = self, Time.now (class << object; self; end).class_eval do method_name = "__bind_#{time.to_i}_#{time.usec}" define_method(method_name, &block) method = instance_method(method_name) remove_method(method_name) method end.bind(object) end end
Version data entries
7 entries across 7 versions & 2 rubygems