Sha256: 4b744c1959f355c12294402cc8e2b94ceca605cb9d4d0c4b545b9cfda70fd50d
Contents?: true
Size: 1.12 KB
Versions: 189
Compression:
Stored size: 1.12 KB
Contents
module RSpec module Mocks # @private module InstanceExec unless respond_to?(:instance_exec) # @private # # based on Bounded Spec InstanceExec (Mauricio Fernandez) # http://eigenclass.org/hiki/bounded+space+instance_exec # - uses singleton_class of matcher instead of global # InstanceExecHelper module # - this keeps it scoped to this class only, which is the # only place we need it # - only necessary for ruby 1.8.6 def instance_exec(*args, &block) singleton_class = (class << self; self; end) begin orig_critical, Thread.critical = Thread.critical, true n = 0 n += 1 while respond_to?(method_name="__instance_exec#{n}") singleton_class.module_eval{ define_method(method_name, &block) } ensure Thread.critical = orig_critical end begin return send(method_name, *args) ensure singleton_class.module_eval{ remove_method(method_name) } rescue nil end end end end end end
Version data entries
189 entries across 137 versions & 25 rubygems