aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-02-24 15:07:47 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-02-24 15:07:47 -0300
commita06b1d0cf4ce951ca33930064b2fb3143a385135 (patch)
tree95f0463acc5d38e87cc0daf8b03813e54c55aa67
parentd1c5f879b0f8fbb991c8948eaba02fe2c69156bb (diff)
downloadrails-a06b1d0cf4ce951ca33930064b2fb3143a385135.tar.gz
rails-a06b1d0cf4ce951ca33930064b2fb3143a385135.tar.bz2
rails-a06b1d0cf4ce951ca33930064b2fb3143a385135.zip
Mention the extraction of Active Resource in the upgrading guide
[ci skip]
-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 f01ed9c3ed..915a008a92 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -47,6 +47,10 @@ Rails 4.0 no longer supports loading plugins from `vendor/plugins`. You must rep
* Rails 4.0 has removed `attr_accessible` and `attr_protected` feature in favor of Strong Parameters. You can use the [Protected Attributes gem](https://github.com/rails/protected_attributes) to a smoothly upgrade path.
+### Active Resource
+
+Rails 4.0 extracted Active Resource to its our gem. If you still need the feature you can add the [Active Resource gem](https://github.com/rails/activeresource) in your Gemfile.
+
### Active Model
* Rails 4.0 has changed how errors attach with the `ActiveModel::Validations::ConfirmationValidator`. Now when confirmation validations fail the error will be attached to `:#{attribute}_confirmation` instead of `attribute`.