aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib
diff options
context:
space:
mode:
authorWojciech Wnętrzak <w.wnetrzak@gmail.com>2015-02-18 23:04:16 +0100
committerWojciech Wnętrzak <w.wnetrzak@gmail.com>2015-02-19 14:10:38 +0100
commitfd38838f29ff0f4514b711c65cafe55c6f21ad2a (patch)
treedea03ed3df1c23dcbe0989a86fdcb0021323836a /activemodel/lib
parent39c936b7605ac90c7e9643792cfe891a2d1afbf3 (diff)
downloadrails-fd38838f29ff0f4514b711c65cafe55c6f21ad2a.tar.gz
rails-fd38838f29ff0f4514b711c65cafe55c6f21ad2a.tar.bz2
rails-fd38838f29ff0f4514b711c65cafe55c6f21ad2a.zip
Deprecate `ActiveModel::Errors` `add_on_empty` and `add_on_blank` methods
without replacement.
Diffstat (limited to 'activemodel/lib')
-rw-r--r--activemodel/lib/active_model/errors.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/errors.rb b/activemodel/lib/active_model/errors.rb
index b1d090b830..4baecf24b4 100644
--- a/activemodel/lib/active_model/errors.rb
+++ b/activemodel/lib/active_model/errors.rb
@@ -347,6 +347,13 @@ module ActiveModel
# person.errors.messages
# # => {:name=>["can't be empty"]}
def add_on_empty(attributes, options = {})
+ ActiveSupport::Deprecation.warn(<<-MESSAGE.squish)
+ ActiveModel::Errors#add_on_empty is deprecated and will be removed in Rails 5.1
+
+ To achieve the same write
+ errors.add(attribute, :empty, options) if value.nil? || value.empty?
+ MESSAGE
+
Array(attributes).each do |attribute|
value = @base.send(:read_attribute_for_validation, attribute)
is_empty = value.respond_to?(:empty?) ? value.empty? : false
@@ -361,6 +368,13 @@ module ActiveModel
# person.errors.messages
# # => {:name=>["can't be blank"]}
def add_on_blank(attributes, options = {})
+ ActiveSupport::Deprecation.warn(<<-MESSAGE.squish)
+ ActiveModel::Errors#add_on_blank is deprecated and will be removed in Rails 5.1
+
+ To achieve the same write
+ errors.add(attribute, :empty, options) if value.blank?
+ MESSAGE
+
Array(attributes).each do |attribute|
value = @base.send(:read_attribute_for_validation, attribute)
add(attribute, :blank, options) if value.blank?