diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-09-15 20:07:01 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-09-15 20:07:01 -0500 |
commit | 28677014a4f8121272a17870246507e86e46837c (patch) | |
tree | 3aebedf6b4575510b1b9e8d37133ffb48f44583c /railties/guides | |
parent | 7531aa76417a5db337287c31c1b97ad53615c8e6 (diff) | |
download | rails-28677014a4f8121272a17870246507e86e46837c.tar.gz rails-28677014a4f8121272a17870246507e86e46837c.tar.bz2 rails-28677014a4f8121272a17870246507e86e46837c.zip |
Add reference about --skip-sprockets to Asset Pipeline Guide
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/asset_pipeline.textile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile index ce4eafb97c..74dfdfb540 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -25,6 +25,12 @@ In Rails 3.1, the asset pipeline is enabled by default. It can be disabled in +a config.assets.enabled = false </plain> +You can also disable it when you are creating a new application passing the --skip-sprockets parameter: + +<plain> +rails new appname --skip-sprockets +</plain> + It is recommended that you use the defaults for all new apps. |