diff options
author | Xavier Noria <fxn@hashref.com> | 2011-08-31 16:10:09 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-08-31 16:10:09 -0700 |
commit | e851e9e407c38e5026835471b7440ab7f2947490 (patch) | |
tree | 1093183732452a9ef34620d74d9f876a40a08796 /railties/guides/source/configuring.textile | |
parent | 6ce6ba8638f4995e8e7d57b304fc31d6e27ae0e5 (diff) | |
parent | f0af56395288d6081d5b36f599fa6bc8695463d6 (diff) | |
download | rails-e851e9e407c38e5026835471b7440ab7f2947490.tar.gz rails-e851e9e407c38e5026835471b7440ab7f2947490.tar.bz2 rails-e851e9e407c38e5026835471b7440ab7f2947490.zip |
Merge branch 'master' of git://github.com/lifo/docrails
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r-- | railties/guides/source/configuring.textile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 110c04f66e..798f8e405e 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -134,6 +134,18 @@ Rails 3.1, by default, is set up to use the +sprockets+ gem to manage assets wit * +config.assets.prefix+ defines the prefix where assets are served from. Defaults to +/assets+. +* +config.assets.digest+ enables the use of MD5 fingerprints in asset names. Set to +true+ by default in +production.rb+ + +* +config.assets.debug+ disables the concatenation and compression of assets. Set to +false+ by default in +development.rb+ + +* +config.assets.manifest+ defines the full path to be used for the asset precompiler's manifest file. Defaults to using +config.assets.prefix+ + +* +config.assets.cache_store+ defines the cache store that Sprockets will use. The default is the Rails file store. + +* +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.compile+ is a boolean that can be used to turn on live Sprockets compilation in production. + h4. Configuring Generators |