Sha256: fa4560288792dcb0ce024d15c9477e5adc61ef2886cf1936f01b042d4c3a1c80
Contents?: true
Size: 522 Bytes
Versions: 8
Compression:
Stored size: 522 Bytes
Contents
# frozen_string_literal: true # # Copyright (c) 2020-present, Blue Marble Payroll, LLC # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. # module Burner module Util # Provide helper methods for keys. module Keyable def make_key(record, keys, resolver, insensitive) keys.map do |key| value = resolver.get(record, key) insensitive ? value.to_s.downcase : value end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems