diff options
author | Jon Atack <jon@atack.com> | 2014-06-01 12:40:47 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2014-06-01 12:40:47 +0200 |
commit | 6237ebc0f8a719b64456e6f8bd4ce4e567090e20 (patch) | |
tree | 7fcdaf7e2c5b760b140fc97dc6f2cfbd9a1759a0 /guides/source | |
parent | a70b9ba62ed323347fe76be47afd80ee60729d9b (diff) | |
download | rails-6237ebc0f8a719b64456e6f8bd4ce4e567090e20.tar.gz rails-6237ebc0f8a719b64456e6f8bd4ce4e567090e20.tar.bz2 rails-6237ebc0f8a719b64456e6f8bd4ce4e567090e20.zip |
config.assets.digests -> config.assets.digest
in Asset Pipeline guide.
[skip ci]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/asset_pipeline.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 984480c70f..559d3f5e7d 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -580,7 +580,7 @@ config.assets.raise_runtime_errors = false When this option is true, the asset pipeline will check if all the assets loaded in your application are included in the `config.assets.precompile` list. -If `config.assets.digests` is also true, the asset pipeline will require that +If `config.assets.digest` is also true, the asset pipeline will require that all requests for assets include digests. ### Turning Digests Off @@ -589,7 +589,7 @@ You can turn off digests by updating `config/environments/development.rb` to include: ```ruby -config.assets.digests = false +config.assets.digest = false ``` When this option is true, digests will be generated for asset URLs. |