Sha256: 1fc83caf3702dfcc25ffb140d5ef95c0c6534cdeada29a4125787c3bb98efcf1
Contents?: true
Size: 543 Bytes
Versions: 28
Compression:
Stored size: 543 Bytes
Contents
# frozen_string_literal: true module Renalware module Patients class HeightValidator < ActiveModel::EachValidator include NumericRangeValidations include NumericScaleValidations MIN_VALUE = 0.20 MAX_VALUE = 2.50 MAX_DECIMAL_PLACES = 2 def validate_each(record, attribute, value) return if value.blank? validate_number_is_in_range(record, attribute, value, MIN_VALUE, MAX_VALUE) validate_numeric_scale(record, attribute, value, MAX_DECIMAL_PLACES) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems