Sha256: c67dc6b75f6469557bac222da758b08822e335c27d9e50d84b1996114797a3c6
Contents?: true
Size: 1.03 KB
Versions: 7
Compression:
Stored size: 1.03 KB
Contents
module RR module DoubleDefinitions class DoubleDefinitionCreateBlankSlate def initialize(double_definition_create, &block) #:nodoc: @double_definition_create = double_definition_create BlankSlate.call(respond_to?(:class) ? self.class : __blank_slated_class) if block_given? if block.arity == 1 yield(self) else respond_to?(:instance_eval) ? instance_eval(&block) : __blank_slated_instance_eval(&block) end end end if KeywordArguments.fully_supported? def method_missing(method_name, *args, **kwargs, &block) @double_definition_create.call(method_name, args, kwargs, &block) end else def method_missing(method_name, *args, &block) @double_definition_create.call(method_name, args, {}, &block) end ruby2_keywords(:method_missing) if respond_to?(:ruby2_keywords, true) end def __double_definition_create__ @double_definition_create end end end end
Version data entries
7 entries across 7 versions & 1 rubygems