From bc36613f4df6e0ab1ee12c69afcc3e5370b72c7c Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Wed, 4 Jan 2012 20:10:16 +0530 Subject: updates to 3.2 release notes --- railties/guides/source/3_2_release_notes.textile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'railties') diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile index d483d59e04..6383d45f98 100644 --- a/railties/guides/source/3_2_release_notes.textile +++ b/railties/guides/source/3_2_release_notes.textile @@ -67,7 +67,6 @@ 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 config.reload_classes_only_on_change to false. @@ -107,6 +106,10 @@ will create indexes for +title+ and +author+ with the latter being an unique ind * Remove old config.paths.app.controller API in favor of config.paths["app/controller"]. +h4. Deprecations + +* +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. + h3. Action Pack h4. Action Controller @@ -227,6 +230,8 @@ content_tag_for(:li, @items) do |item| end +* Added +font_path+ helper method that computes the path to a font asset in public/fonts. + h5. Deprecations * Passing formats or handlers to render :template and friends like render :template => "foo.html.erb" is deprecated. Instead, you can provide :handlers and :formats directly as an options: render :template => "foo", :formats => [:html, :js], :handlers => :erb. @@ -416,6 +421,8 @@ Event.where(:created_at => Time.now.all_day) h4. Deprecations +* +ActiveSupport::Base64+ is deprecated in favor of ::Base64. + * Deprecated ActiveSupport::Memoizable in favor of Ruby memoization pattern. * Module#synchronize is deprecated with no replacement. Please use monitor from ruby's standard library. -- cgit v1.2.3