Use :present as key for the absence validatior message

This commit is contained in:
Rafael Mendonça França 2012-12-21 17:10:16 -03:00
parent b437053b5b
commit ac6941fb71
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ en:
accepted: "must be accepted"
empty: "can't be empty"
blank: "can't be blank"
not_blank: "must be blank"
present: "must be blank"
too_long: "is too long (maximum is %{count} characters)"
too_short: "is too short (minimum is %{count} characters)"
wrong_length: "is the wrong length (should be %{count} characters)"

View File

@ -3,7 +3,7 @@ module ActiveModel
# == Active Model Absence Validator
class AbsenceValidator < EachValidator #:nodoc:
def validate_each(record, attr_name, value)
record.errors.add(attr_name, :not_blank, options) if value.present?
record.errors.add(attr_name, :present, options) if value.present?
end
end