diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:10:51 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-29 13:10:51 +1100 |
commit | b89ce3e67961e6e090403f99b0b696f252da14d4 (patch) | |
tree | c73941e2191dd9bfb0744cdfdc6d2f663d89f797 /railties | |
parent | 549c13466072d5c33fe808d25adfa06bd5feb6c8 (diff) | |
download | rails-b89ce3e67961e6e090403f99b0b696f252da14d4.tar.gz rails-b89ce3e67961e6e090403f99b0b696f252da14d4.tar.bz2 rails-b89ce3e67961e6e090403f99b0b696f252da14d4.zip |
Mention encoding in 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 5ae4a53973..40d09f8941 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -75,6 +75,8 @@ h4. Rails General Configuration * +config.eager_load_paths+ accepts an array of paths from which Rails will eager load on boot if cache classes is enabled. All elements of this array must also be in +load_paths+. +* +config.encoding+ sets up the application-wide encoding. Defaults to UTF-8. + * +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.log_level+ defines the verbosity of the Rails logger. In production mode, this defaults to +:info+. In development mode, it defaults to +:debug+. |