aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/errors.rb
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2012-01-16 17:22:44 +0100
committerPiotr Sarnacki <drogus@gmail.com>2012-01-16 17:24:08 +0100
commit3430647434a94226a3fbed4587ef3b4bea7fe6f9 (patch)
treea11b7673c37f2d42067de45fe6aacce23667cd0d /activemodel/lib/active_model/errors.rb
parent42159354b4ee6145fe3fa9e169af48380c6134e0 (diff)
downloadrails-3430647434a94226a3fbed4587ef3b4bea7fe6f9.tar.gz
rails-3430647434a94226a3fbed4587ef3b4bea7fe6f9.tar.bz2
rails-3430647434a94226a3fbed4587ef3b4bea7fe6f9.zip
Add ActiveModel::Errors#delete, which was not available after move to use delegation
Diffstat (limited to 'activemodel/lib/active_model/errors.rb')
-rw-r--r--activemodel/lib/active_model/errors.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/errors.rb b/activemodel/lib/active_model/errors.rb
index aafd1c8a74..3d814b4870 100644
--- a/activemodel/lib/active_model/errors.rb
+++ b/activemodel/lib/active_model/errors.rb
@@ -100,6 +100,11 @@ module ActiveModel
messages[key] = value
end
+ # Delete messages for +key+
+ def delete(key)
+ messages.delete(key)
+ end
+
# When passed a symbol or a name of a method, returns an array of errors
# for the method.
#