diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-11-05 15:21:10 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-11-05 15:21:10 +0900 |
commit | d027e2759d1aa5235d562bc1063d3f957473c763 (patch) | |
tree | 098f1772fd57c91643c3d94a11ab1b57bb2761d9 /guides | |
parent | bb441843a76c14285694588b9b36d32ff59c0d48 (diff) | |
download | rails-d027e2759d1aa5235d562bc1063d3f957473c763.tar.gz rails-d027e2759d1aa5235d562bc1063d3f957473c763.tar.bz2 rails-d027e2759d1aa5235d562bc1063d3f957473c763.zip |
[ci skip] fix `config.assets.digest` default value
Diffstat (limited to 'guides')
-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 58c3f217eb..2957232186 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -153,7 +153,7 @@ pipeline is enabled. It is set to true by default. * `config.assets.manifest` defines the full path to be used for the asset precompiler's manifest file. Defaults to a file named `manifest-<random>.json` in the `config.assets.prefix` directory within the public folder. -* `config.assets.digest` enables the use of MD5 fingerprints in asset names. Set to `true` by default in `production.rb`. +* `config.assets.digest` enables the use of MD5 fingerprints in asset names. Set to `true` by default in `production.rb` and `development.rb`. * `config.assets.debug` disables the concatenation and compression of assets. Set to `true` by default in `development.rb`. |