Sha256: 97dbef0931e1e3236bc020041d1f3d662fccc223eadbf3522ba6d12bce183fa7

Contents?: true

Size: 1.08 KB

Versions: 5

Compression:

Stored size: 1.08 KB

Contents

module Rspec
  module Matchers
    module InstanceExec
      unless respond_to?(:instance_exec)
        # 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

5 entries across 5 versions & 1 rubygems

Version Path
rspec-expectations-2.0.0.beta.8 lib/rspec/matchers/extensions/instance_exec.rb
rspec-expectations-2.0.0.beta.7 lib/rspec/matchers/extensions/instance_exec.rb
rspec-expectations-2.0.0.beta.6 lib/rspec/matchers/extensions/instance_exec.rb
rspec-expectations-2.0.0.beta.5 lib/rspec/matchers/extensions/instance_exec.rb
rspec-expectations-2.0.0.beta.4 lib/rspec/matchers/extensions/instance_exec.rb