Sha256: 1779182fa983f63139b3b85b94143ce689d0f8087bf2013c90feb8d05eb7d2fe
Contents?: true
Size: 898 Bytes
Versions: 26
Compression:
Stored size: 898 Bytes
Contents
module Foobara module Callback class Block module Concerns module KeywordArgumentableBlock def to_proc @to_proc ||= if has_keyword_args? proc do |*args, &block| keyword_args = args.reduce(:merge) || {} original_block.call(**keyword_args, &block) end else original_block end end def validate_original_block! super if has_keyword_args? && has_positional_args? # TODO: raise a real error # :nocov: raise "Expect #{type} block to either take a positional arg or keyword args but not both" # :nocov: end end end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems