diff options
author | Hendy Tanata <htanata@gmail.com> | 2017-03-21 08:49:48 -0700 |
---|---|---|
committer | Hendy Tanata <htanata@gmail.com> | 2017-03-21 08:49:48 -0700 |
commit | 3b51c8a591b0b79fa6d9f42f948b6b733dfae936 (patch) | |
tree | 45c3920b1999e0e9af2c1e2623a9640b83d822b1 | |
parent | 7724c8cb53093ba09f5b8f08feb8321d376d56dd (diff) | |
download | rails-3b51c8a591b0b79fa6d9f42f948b6b733dfae936.tar.gz rails-3b51c8a591b0b79fa6d9f42f948b6b733dfae936.tar.bz2 rails-3b51c8a591b0b79fa6d9f42f948b6b733dfae936.zip |
Update Configuring Rails Component guide example
config.time_zone is no longer in included in config/application.rb.
See 28dcadc0140dfdebe87d5e691fd709c0a9ae0bae.
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index a4f3882124..ae70b06996 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -32,7 +32,7 @@ Configuring Rails Components In general, the work of configuring Rails means configuring the components of Rails, as well as configuring Rails itself. The configuration file `config/application.rb` and environment-specific configuration files (such as `config/environments/production.rb`) allow you to specify the various settings that you want to pass down to all of the components. -For example, the `config/application.rb` file includes this setting: +For example, you could add this setting to `config/application.rb` file: ```ruby config.time_zone = 'Central Time (US & Canada)' |