diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:11:27 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:11:27 +1100 |
commit | 245ce774bf4e428bb608d0d880f711c3c4153821 (patch) | |
tree | 51fd0410c1193b9ebb116c7f506f50452be81973 /railties | |
parent | b89ce3e67961e6e090403f99b0b696f252da14d4 (diff) | |
download | rails-245ce774bf4e428bb608d0d880f711c3c4153821.tar.gz rails-245ce774bf4e428bb608d0d880f711c3c4153821.tar.bz2 rails-245ce774bf4e428bb608d0d880f711c3c4153821.zip |
Add mention of helper_paths to config guide
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 40d09f8941..05afc4f7ea 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -79,6 +79,8 @@ h4. Rails General Configuration * +config.filter_parameters+ used for filtering out the parameters that you don't want shown in the logs, such as passwords or credit card numbers. +* +config.helper_paths+ configures where Rails can find helpers for this application. + * +config.log_level+ defines the verbosity of the Rails logger. In production mode, this defaults to +:info+. In development mode, it defaults to +:debug+. * +config.log_path+ overrides the path to the log file to use. Defaults to +log/#{environment}.log+ (e.g. log/development.log or log/production.log). |