Sha256: f7ac2c2e598ddf2ca35362735badefbe66ff4b308f88bb4c0cfa0db07c3b6fa7
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module Rack module Reducer # refine Proc and hash in this scope only module Refinements refine Proc do def required_argument_names parameters.select { |type, _| type == :keyreq }.map(&:last) end def all_argument_names parameters.map(&:last) end def satisfies?(params) keywords = required_argument_names params.slice(*keywords).keys.to_set == keywords.to_set end end # backport Hash#slice for Ruby < 2.4 unless {}.respond_to?(:slice) refine Hash do def slice(*keys) [keys, values_at(*keys)].transpose.select { |_k, val| val }.to_h end end end refine Hash do def symbolize_keys each_with_object({}) do |(key, val), hash| hash[key.to_sym] = val.is_a?(Hash) ? val.symbolize_keys : val end end alias_method :to_unsafe_h, :to_h end end private_constant :Refinements end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rack-reducer-1.1.2 | lib/rack/reducer/refinements.rb |