diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-02 18:49:18 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-03 10:39:08 -0200 |
commit | dad7fdc5734a3813246f238ac5760b2076932216 (patch) | |
tree | 84904473ab7af22f4ee29d86c75106050a25082e /railties/guides/source/3_2_release_notes.textile | |
parent | b627923b3c11bd5a0d05a1c601a92141703354c1 (diff) | |
download | rails-dad7fdc5734a3813246f238ac5760b2076932216.tar.gz rails-dad7fdc5734a3813246f238ac5760b2076932216.tar.bz2 rails-dad7fdc5734a3813246f238ac5760b2076932216.zip |
Rails::Plugin has gone
Diffstat (limited to 'railties/guides/source/3_2_release_notes.textile')
-rw-r--r-- | railties/guides/source/3_2_release_notes.textile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile index c1afee004e..2965dc6fae 100644 --- a/railties/guides/source/3_2_release_notes.textile +++ b/railties/guides/source/3_2_release_notes.textile @@ -67,6 +67,8 @@ When running a multi-user, multi-account application, it's a great help to be ab h3. Railties +* Rails::Plugin is deprecated and will be removed in Rails 4.0. Instead of adding plugins to vendor/plugins use gems or bundler with path or git dependencies. + * Speed up development by only reloading classes if dependencies files changed. This can be turned off by setting <tt>config.reload_classes_only_on_change</tt> to false. * New applications get a flag <tt>config.active_record.auto_explain_threshold_in_seconds</tt> in the environments configuration files. With a value of <tt>0.5</tt> in <tt>development.rb</tt> and commented out in <tt>production.rb</tt>. No mention in <tt>test.rb</tt>. |