Sha256: de7496f0a14c804f8a2aeda21d442450fb14c35135c8c26c320a8f8d1f1cb6c6
Contents?: true
Size: 364 Bytes
Versions: 35
Compression:
Stored size: 364 Bytes
Contents
module Renalware module Patients class PulseValidator < ActiveModel::EachValidator include NumericRangeValidations MIN_VALUE = 20 MAX_VALUE = 200 def validate_each(record, attribute, value) return if value.blank? validate_number_is_in_range(record, attribute, value, MIN_VALUE, MAX_VALUE) end end end end
Version data entries
35 entries across 35 versions & 1 rubygems