diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-11-19 22:43:19 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-12-02 20:03:19 -0200 |
commit | 0638d329c6b5a1d270150c1b8c74e413e98ef3f4 (patch) | |
tree | d093f2138a1129901cc21786132fa02e247f8228 | |
parent | 73c1fc531d70dae5faffe01a31445b4fb8a0d951 (diff) | |
download | rails-0638d329c6b5a1d270150c1b8c74e413e98ef3f4.tar.gz rails-0638d329c6b5a1d270150c1b8c74e413e98ef3f4.tar.bz2 rails-0638d329c6b5a1d270150c1b8c74e413e98ef3f4.zip |
Wrap 80 columns [ci skip]
-rw-r--r-- | guides/source/configuring.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 5238d4317c..59c2594422 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -66,7 +66,8 @@ These configuration methods are to be called on a `Rails::Railtie` object, such * `config.action_view.cache_template_loading` controls whether or not templates should be reloaded on each request. Defaults to whatever is set for `config.cache_classes`. -* `config.beginning_of_week` sets the default beginning of week for the application. Accepts a valid week day symbol (e.g. `:monday`). +* `config.beginning_of_week` sets the default beginning of week for the +application. Accepts a valid week day symbol (e.g. `:monday`). * `config.cache_store` configures which cache store to use for Rails caching. Options include one of the symbols `:memory_store`, `:file_store`, `:mem_cache_store`, `:null_store`, or an object that implements the cache API. Defaults to `:file_store` if the directory `tmp/cache` exists, and to `:memory_store` otherwise. @@ -329,13 +330,17 @@ The schema dumper adds one additional configuration option: * `config.action_dispatch.tld_length` sets the TLD (top-level domain) length for the application. Defaults to `1`. -* `config.action_dispatch.http_auth_salt` sets the HTTP Auth salt value. Defaults to `'http authentication'`. +* `config.action_dispatch.http_auth_salt` sets the HTTP Auth salt value. Defaults +to `'http authentication'`. -* `config.action_dispatch.signed_cookie_salt` sets the signed cookies salt value. Defaults to `'signed cookie'`. +* `config.action_dispatch.signed_cookie_salt` sets the signed cookies salt value. +Defaults to `'signed cookie'`. -* `config.action_dispatch.encrypted_cookie_salt` sets the encrypted cookies salt value. Defaults to `'encrypted cookie'`. +* `config.action_dispatch.encrypted_cookie_salt` sets the encrypted cookies salt +value. Defaults to `'encrypted cookie'`. -* `config.action_dispatch.encrypted_signed_cookie_salt` sets the signed encrypted cookies salt value. Defaults to `'signed encrypted cookie'`. +* `config.action_dispatch.encrypted_signed_cookie_salt` sets the signed +encrypted cookies salt value. Defaults to `'signed encrypted cookie'`. * `ActionDispatch::Callbacks.before` takes a block of code to run before the request. |