class Formtastic::Inputs::Base::Validations::IndeterminableMinimumAttributeError

Public Instance Methods

message() click to toggle source
# File lib/formtastic/inputs/base/validations.rb, line 7
def message
  [
    "A minimum value can not be determined when the validation uses :greater_than on a :decimal or :float column type.",
    "Please alter the validation to use :greater_than_or_equal_to, or provide a value for this attribute explicitly with the :min option on input()."
  ].join("\n")
end