aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorTrevor Turk <trevorturk@gmail.com>2013-02-28 14:25:07 -0600
committerTrevor Turk <trevorturk@gmail.com>2013-02-28 14:25:07 -0600
commit1525268d1ec74cdc34559907ddfb5b1cc6c30029 (patch)
tree3f47c8cd7766a1cdca026043e242a84863441937 /guides/source/upgrading_ruby_on_rails.md
parent3dd5444e56e009276d24a49f451e860daeafd613 (diff)
downloadrails-1525268d1ec74cdc34559907ddfb5b1cc6c30029.tar.gz
rails-1525268d1ec74cdc34559907ddfb5b1cc6c30029.tar.bz2
rails-1525268d1ec74cdc34559907ddfb5b1cc6c30029.zip
Document rails-observers extraction
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 1e82261b73..2e1f7118e1 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -124,6 +124,10 @@ Rails 4.0 removes the `j` alias for `ERB::Util#json_escape` since `j` is already
The order in which helpers from more than one directory are loaded has changed in Rails 4.0. Previously, they were gathered and then sorted alphabetically. After upgrading to Rails 4.0, helpers will preserve the order of loaded directories and will be sorted alphabetically only within each directory. Unless you explicitly use the `helpers_path` parameter, this change will only impact the way of loading helpers from engines. If you rely on the ordering, you should check if correct methods are available after upgrade. If you would like to change the order in which engines are loaded, you can use `config.railties_order=` method.
+### Active Record Observer and Action Controller Sweeper
+
+Active Record Observer and Action Controller Sweeper have been extracted to the `rails-observers` gem. You will need to add the `rails-observers` gem if you require these features.
+
Upgrading from Rails 3.1 to Rails 3.2
-------------------------------------