blob: b0d70230466b47c51e6037c191a5ed7d2bcaa1a2 (
plain) (
tree)
|
|
module ActiveModel
module DeprecatedErrorMethods
def on(attribute)
# ActiveSupport::Deprecation.warn "Errors#on have been deprecated, use Errors#[] instead"
errors = self[attribute]
errors.size < 2 ? errors.first : errors
end
def on_base
# ActiveSupport::Deprecation.warn "Errors#on_base have been deprecated, use Errors#[:base] instead"
on(:base)
end
def add_to_base(msg)
# ActiveSupport::Deprecation.warn "Errors#add_to_base(msg) has been deprecated, use Errors#[:base] << msg instead"
self[:base] << msg
end
def invalid?(attribute)
# ActiveSupport::Deprecation.warn "Errors#invalid?(attribute) has been deprecated, use Errors#[attribute].any? instead"
self[attribute].any?
end
def each_full
# ActiveSupport::Deprecation.warn "Errors#each_full has been deprecated, use Errors#to_a.each instead"
to_a.each { |error| yield error }
end
end
end
|