Sha256: 049c234c42ba423b33695a7db744dbe134dabedf3de99d83ade82456b7af9eec
Contents?: true
Size: 544 Bytes
Versions: 100
Compression:
Stored size: 544 Bytes
Contents
# frozen_string_literal: true module Renalware module Patients class WeightValidator < ActiveModel::EachValidator include NumericRangeValidations include NumericScaleValidations MIN_VALUE = 5.0 MAX_VALUE = 300.0 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
100 entries across 100 versions & 1 rubygems