Sha256: 46e6eda7bcb002df6a077bdeb4c68e40babf7053eef60cb074a64e0a56cfa581
Contents?: true
Size: 1.01 KB
Versions: 3374
Compression:
Stored size: 1.01 KB
Contents
RSpec::Support.require_rspec_support("method_signature_verifier") module RSpec module Support module WithKeywordsWhenNeeded # This module adds keyword sensitive support for core ruby methods # where we cannot use `ruby2_keywords` directly. module_function if RSpec::Support::RubyFeatures.kw_args_supported? # Remove this in RSpec 4 in favour of explicitly passed in kwargs where # this is used. Works around a warning in Ruby 2.7 def class_exec(klass, *args, &block) if MethodSignature.new(block).has_kw_args_in?(args) binding.eval(<<-CODE, __FILE__, __LINE__) kwargs = args.pop klass.class_exec(*args, **kwargs, &block) CODE else klass.class_exec(*args, &block) end end ruby2_keywords :class_exec if respond_to?(:ruby2_keywords, true) else def class_exec(klass, *args, &block) klass.class_exec(*args, &block) end end end end end
Version data entries
3,374 entries across 3,373 versions & 29 rubygems