aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Umbach <sam@thinkrelevance.com>2011-12-30 17:19:49 -0500
committerVijay Dev <vijaydev.cse@gmail.com>2011-12-31 19:11:00 +0530
commit95a83cc2487435ceb2a37e95875c4277e223916b (patch)
tree921241af3d0a1a9881ccae02820c54be57508ab6
parent003d0ff3f8f26c797cc6b85ccc580da28a9637a1 (diff)
downloadrails-95a83cc2487435ceb2a37e95875c4277e223916b.tar.gz
rails-95a83cc2487435ceb2a37e95875c4277e223916b.tar.bz2
rails-95a83cc2487435ceb2a37e95875c4277e223916b.zip
SCSS processor is provided by the sass gem
-rw-r--r--railties/guides/source/asset_pipeline.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile
index 4dc942c2e2..05cb8888a0 100644
--- a/railties/guides/source/asset_pipeline.textile
+++ b/railties/guides/source/asset_pipeline.textile
@@ -253,7 +253,7 @@ h4. Preprocessing
The file extensions used on an asset determine what preprocessing is applied. When a controller or a scaffold is generated with the default Rails gemset, a CoffeeScript file and a SCSS file are generated in place of a regular JavaScript and CSS file. The example used before was a controller called "projects", which generated an +app/assets/javascripts/projects.js.coffee+ and an +app/assets/stylesheets/projects.css.scss+ file.
-When these files are requested, they are processed by the processors provided by the +coffee-script+ and +sass-rails+ gems and then sent back to the browser as JavaScript and CSS respectively.
+When these files are requested, they are processed by the processors provided by the +coffee-script+ and +sass+ gems and then sent back to the browser as JavaScript and CSS respectively.
Additional layers of preprocessing can be requested by adding other extensions, where each extension is processed in a right-to-left manner. These should be used in the order the processing should be applied. For example, a stylesheet called +app/assets/stylesheets/projects.css.scss.erb+ is first processed as ERB, then SCSS, and finally served as CSS. The same applies to a JavaScript file -- +app/assets/javascripts/projects.js.coffee.erb+ is processed as ERB, then CoffeeScript, and served as JavaScript.