aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-08-01 20:40:03 +0200
committerXavier Noria <fxn@hashref.com>2012-08-01 20:40:07 +0200
commit81542f95d25825a7d3eff87d6f706661bf553b18 (patch)
treea68238beb530b68b5cbeff4d860a32d440097bfc /activerecord/lib
parentf203be98645a603e03aa0dbbf2b7eb42cd729cb4 (diff)
downloadrails-81542f95d25825a7d3eff87d6f706661bf553b18.tar.gz
rails-81542f95d25825a7d3eff87d6f706661bf553b18.tar.bz2
rails-81542f95d25825a7d3eff87d6f706661bf553b18.zip
removes the deprecation of update_attribute
Applying the new policy here to not deprecate stuff in point releases.
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/persistence.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index 3926d6ee10..d6249db380 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -179,7 +179,6 @@ module ActiveRecord
#
def update_attribute(name, value)
name = name.to_s
- ActiveSupport::Deprecation.warn("update_attribute is deprecated and will be removed in Rails 4.1. Please use update_attributes or update_columns instead. Check their documentation for the implications.")
raise ActiveRecordError, "#{name} is marked as readonly" if self.class.readonly_attributes.include?(name)
send("#{name}=", value)
save(:validate => false)