aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/core.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-07 14:09:31 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-06-07 14:09:31 -0300
commitdb5415dd4fa2c8cefd1197505f7c87dc0332e171 (patch)
tree35037a8197080c2649aabfc572d70ae41460b117 /activerecord/lib/active_record/core.rb
parent287e926d564bbe8db6baad85d35276042e0dc47a (diff)
parent105e0304b9d7eab2f5e570fc23fbc4e1d3f80823 (diff)
downloadrails-db5415dd4fa2c8cefd1197505f7c87dc0332e171.tar.gz
rails-db5415dd4fa2c8cefd1197505f7c87dc0332e171.tar.bz2
rails-db5415dd4fa2c8cefd1197505f7c87dc0332e171.zip
Merge pull request #15565 from sgrif/sg-no-unfreezing
Move conditionals about freezing closer to the definition of `freeze`
Diffstat (limited to 'activerecord/lib/active_record/core.rb')
-rw-r--r--activerecord/lib/active_record/core.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index c996e93076..79388f53b5 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -546,5 +546,11 @@ module ActiveRecord
def init_attributes(attributes, options)
assign_attributes(attributes)
end
+
+ def thaw
+ if frozen?
+ @raw_attributes = @raw_attributes.dup
+ end
+ end
end
end