diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:23:40 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:23:40 +1100 |
commit | 3d8d21b5132bb6852fe9533710d9105ab4d30ec8 (patch) | |
tree | f5eb753db8fddcdcaccadc95dbd8b3670666dc66 /railties | |
parent | b4ec8ad09c028a5e322a04eacf487b775a672ec2 (diff) | |
download | rails-3d8d21b5132bb6852fe9533710d9105ab4d30ec8.tar.gz rails-3d8d21b5132bb6852fe9533710d9105ab4d30ec8.tar.bz2 rails-3d8d21b5132bb6852fe9533710d9105ab4d30ec8.zip |
There is no config.action_view.warn_cache_misses method for Rails 3
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index c948f680f8..0803c1e7f4 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -155,8 +155,6 @@ There are only a few configuration options for Action View, starting with four o * +config.action_view.debug_rjs+ specifies whether RJS responses should be wrapped in a try/catch block that alert()s the caught exception (and then re-raises it). The default is +false+. -* +config.action_view.warn_cache_misses+ tells Rails to display a warning whenever an action results in a cache miss on your view paths. The default is +false+. - * +config.action_view.field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is <tt>Proc.new{ |html_tag, instance| %Q(%<div class="field_with_errors">#{html_tag}</div>).html_safe }</tt> * +config.action_view.default_form_builder+ tells Rails which form builder to use by default. The default is +ActionView::Helpers::FormBuilder+. |