Sha256: 68f1ebf25e94707ad3bf4d189cb9f76fd2997b9ffef4bfedb6337f9f6feb1953
Contents?: true
Size: 585 Bytes
Versions: 26
Compression:
Stored size: 585 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. # require_relative 'validations/blank' require_relative 'validations/present' module Burner module Modeling # Factory for building sub-classes that can validate an individual object and field value. class Validations acts_as_hashable_factory register 'blank', Validations::Blank register 'present', Validations::Present end end end
Version data entries
26 entries across 26 versions & 1 rubygems