1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #24786 from vipulnsward/document-gzip-assets

Document config.assets.gzip flag.
This commit is contained in:
Richard Schneeman 2016-04-29 13:14:30 -05:00
commit b1049e7fad
2 changed files with 13 additions and 0 deletions

View file

@ -1111,6 +1111,17 @@ effect on the application. Instead, setting `config.assets.css_compressor` and
`config.assets.js_compressor` will control compression of CSS and JavaScript
assets.
### Serving GZipped version of assets
By default, gzipped version of compiled assets will be generated, along
with the non-gzipped version of assets. Gzipped assets help reduce, the transmission of
date over the wire. You can configure this by setting the `gzip` flag.
```ruby
config.assets.gzip = false # disable gzipped assets generation
```
### Using Your Own Compressor
The compressor config settings for CSS and JavaScript also take any object.

View file

@ -163,6 +163,8 @@ pipeline is enabled. It is set to true by default.
* `config.assets.js_compressor` defines the JavaScript compressor to use. Possible values are `:closure`, `:uglifier` and `:yui` which require the use of the `closure-compiler`, `uglifier` or `yui-compressor` gems respectively.
* `config.assets.gzip` a flag that enables the creation of gziped version of compiled assets, along with non-gziped assets. Set to `true` by default.
* `config.assets.paths` contains the paths which are used to look for assets. Appending paths to this configuration option will cause those paths to be used in the search for assets.
* `config.assets.precompile` allows you to specify additional assets (other than `application.css` and `application.js`) which are to be precompiled when `rake assets:precompile` is run.