diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-10-29 21:05:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-29 21:05:57 -0400 |
commit | 1f63d09ad78b6dada597e97359dce507c1169081 (patch) | |
tree | d6c243e1e18a83b7e2d528635397147047f168e8 | |
parent | fe1f4b2ad56f010a4e9b93d547d63a15953d9dc2 (diff) | |
parent | 8ee7d5e1fcea69713ab7d1389fbdf3944bf8a4c7 (diff) | |
download | rails-1f63d09ad78b6dada597e97359dce507c1169081.tar.gz rails-1f63d09ad78b6dada597e97359dce507c1169081.tar.bz2 rails-1f63d09ad78b6dada597e97359dce507c1169081.zip |
Merge pull request #26932 from y-yagi/update_doc_about_assets_digest
update doc about assets digest class [ci skip]
-rw-r--r-- | guides/source/configuring.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index c625cf67f6..b0334bfe4a 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -175,11 +175,11 @@ 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. +* `config.assets.digest` enables the use of SHA256 fingerprints in asset names. Set to `true` by default. * `config.assets.debug` disables the concatenation and compression of assets. Set to `true` by default in `development.rb`. -* `config.assets.version` is an option string that is used in MD5 hash generation. This can be changed to force all files to be recompiled. +* `config.assets.version` is an option string that is used in SHA256 hash generation. This can be changed to force all files to be recompiled. * `config.assets.compile` is a boolean that can be used to turn on live Sprockets compilation in production. |