diff options
author | Trevor Turk <trevorturk@gmail.com> | 2013-02-28 15:45:37 -0600 |
---|---|---|
committer | Trevor Turk <trevorturk@gmail.com> | 2013-02-28 15:45:37 -0600 |
commit | 0407ef5eaf965a69a8854370537f41d6da5b5060 (patch) | |
tree | 9f6980f25aa162cb78427032235b0eac5d876b4a | |
parent | a1d8b031d355fdbf9e93d26e33dfdac247c8a5f9 (diff) | |
download | rails-0407ef5eaf965a69a8854370537f41d6da5b5060.tar.gz rails-0407ef5eaf965a69a8854370537f41d6da5b5060.tar.bz2 rails-0407ef5eaf965a69a8854370537f41d6da5b5060.zip |
Document the deprecation of ActionView::RecordIdentifier
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index b620f517db..b6f49c28b9 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -89,6 +89,8 @@ Rails 4.0 extracted Active Resource to its own gem. If you still need the featur * Rails 4.0 changes the default memcached client from `memcache-client` to `dalli`. To upgrade, simply add `gem 'dalli'` to your `Gemfile`. +* Rails 4.0 deprecates the `dom_id` and `dom_class` methods. You will need to include the `ActionView::RecordIdentifier` module in controllers requiring this feature. + * Rails 4.0 changed how `assert_generates`, `assert_recognizes`, and `assert_routing` work. Now all these assertions raise `Assertion` instead of `ActionController::RoutingError`. * Rails 4.0 also changed the way unicode character routes are drawn. Now you can draw unicode character routes directly. If you already draw such routes, you must change them, for example: |