diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-21 07:50:35 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-21 07:50:35 -0700 |
commit | ace06925284786cf884a93d36d0739eb49fac789 (patch) | |
tree | 74443d08eb3e02752d39a1d19de00d85d8bf0b66 /guides/source | |
parent | 55d943c5670997ce64744c1ae3cd0426f5517b10 (diff) | |
parent | 57bef99073fc2e3e30694bf1fb1a3c04a63bfcff (diff) | |
download | rails-ace06925284786cf884a93d36d0739eb49fac789.tar.gz rails-ace06925284786cf884a93d36d0739eb49fac789.tar.bz2 rails-ace06925284786cf884a93d36d0739eb49fac789.zip |
Merge pull request #7000 from kennyj/fix_6697-3
Use instance_accessor: false instead of instance_writer.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.textile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.textile b/guides/source/upgrading_ruby_on_rails.textile index 5024bc4c37..680beb5dfe 100644 --- a/guides/source/upgrading_ruby_on_rails.textile +++ b/guides/source/upgrading_ruby_on_rails.textile @@ -44,6 +44,8 @@ The <tt>delete</tt> method in collection associations can now receive <tt>Fixnum Rails 4.0 has changed how orders get stacked in +ActiveRecord::Relation+. In previous versions of rails new order was applied after previous defined order. But this is no long true. Check "ActiveRecord Query guide":active_record_querying.html#ordering for more information. +Rails 4.0 has changed <tt>serialized_attributes</tt> and <tt>_attr_readonly</tt> to class methods only. Now you shouldn't use instance methods, it's deprecated. You must change them, e.g. <tt>self.serialized_attributes</tt> to <tt>self.class.serialized_attributes</tt>. + h4(#active_model4_0). Active Model Rails 4.0 has changed how errors attach with the <tt>ActiveModel::Validations::ConfirmationValidator</tt>. Now when confirmation validations fail the error will be attached to <tt>:#{attribute}_confirmation</tt> instead of <tt>attribute</tt>. |