aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/asset_pipeline.textile
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2011-09-15 20:07:01 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2011-09-15 20:07:01 -0500
commit28677014a4f8121272a17870246507e86e46837c (patch)
tree3aebedf6b4575510b1b9e8d37133ffb48f44583c /railties/guides/source/asset_pipeline.textile
parent7531aa76417a5db337287c31c1b97ad53615c8e6 (diff)
downloadrails-28677014a4f8121272a17870246507e86e46837c.tar.gz
rails-28677014a4f8121272a17870246507e86e46837c.tar.bz2
rails-28677014a4f8121272a17870246507e86e46837c.zip
Add reference about --skip-sprockets to Asset Pipeline Guide
Diffstat (limited to 'railties/guides/source/asset_pipeline.textile')
-rw-r--r--railties/guides/source/asset_pipeline.textile6
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.