Sha256: 89596edc82d1fc7b2a04362cd7795c3a0ad04dcd7f7482efe40236816d121996

Contents?: true

Size: 1.46 KB

Versions: 55

Compression:

Stored size: 1.46 KB

Contents

module RSpec
  module Core
    module Extensions
      module InstanceEvalWithArgs
        # based on Bounded Spec InstanceExec (Mauricio Fernandez)
        # http://eigenclass.org/hiki/bounded+space+instance_exec
        # - uses singleton_class instead of global InstanceExecHelper module
        # - this keeps it scoped to classes/modules that include this module
        # - only necessary for ruby 1.8.6
        def instance_eval_with_args(*args, &block)
          return instance_exec(*args, &block) if respond_to?(:instance_exec)

          # If there are no args and the block doesn't expect any, there's no
          # need to fake instance_exec with our hack below.
          # Notes:
          #   * lambda { }.arity # => -1
          #   * lambda { || }.arity # => 0
          #   * lambda { |*a| }.arity # -1
          return instance_eval(&block) if block.arity < 1 && args.size.zero?

          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

55 entries across 55 versions & 6 rubygems

Version Path
horseman-0.0.4 vendor/ruby/1.9.1/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
horseman-0.0.3 vendor/ruby/1.9.1/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
horseman-0.0.2 vendor/ruby/1.9.1/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
nutshell-crm-0.0.6.alpha vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
nutshell-crm-0.0.5 vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
nutshell-crm-0.0.4 vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
nutshell-crm-0.0.3 vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
nutshell-crm-0.0.2 vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
nutshell-crm-0.0.1 vendor/bundle/gems/rspec-core-2.7.1/lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.8.0.rc1 lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.7.1 lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.7.0 lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.7.0.rc1 lib/rspec/core/extensions/instance_eval_with_args.rb
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions/instance_eval_with_args.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/rspec-core-2.5.1/lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.6.4 lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.6.3 lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.6.3.beta1 lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.6.2.rc lib/rspec/core/extensions/instance_eval_with_args.rb
rspec-core-2.6.0 lib/rspec/core/extensions/instance_eval_with_args.rb