Sha256: 50aa2debc20456bf68beaef5504bc8d4907e3ef3907a728c73264c679768c7d5
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
require 'brass' require 'facets/dir/ascend' class Object unless method_defined?(:instance_exec) # 1.9 require 'thread' module InstanceExecMethods #:nodoc: end include InstanceExecMethods # Evaluate the block with the given arguments within the context of # this object, so self is set to the method receiver. # # From Mauricio's http://eigenclass.org/hiki/bounded+space+instance_exec # # This version has been borrowed from Rails for compatibility sake. def instance_exec(*args, &block) begin old_critical, Thread.critical = Thread.critical, true n = 0 n += 1 while respond_to?(method_name = "__instance_exec#{n}") InstanceExecMethods.module_eval { define_method(method_name, &block) } ensure Thread.critical = old_critical end begin send(method_name, *args) ensure InstanceExecMethods.module_eval { remove_method(method_name) } rescue nil end end end # # This is used by the `#=>` notation. # def must_return(value) assert(self == value, "#{self.inspect} #=> #{value.inspect}") end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
qed-2.9.1 | lib/qed/core_ext.rb |
qed-2.9.0 | lib/qed/core_ext.rb |