aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorPatrick Sharp <jakanapes@gmail.com>2012-04-09 08:54:02 -0500
committerPatrick Sharp <jakanapes@gmail.com>2012-04-09 08:54:02 -0500
commitf28f1d70b3f3dd9f694067f7cab2e717e302ee2b (patch)
treed98bf360b9e30301dbacf2c30082342064c917b4 /guides/source
parent8f25db9067b57b84b7c8654af966f97294abb655 (diff)
downloadrails-f28f1d70b3f3dd9f694067f7cab2e717e302ee2b.tar.gz
rails-f28f1d70b3f3dd9f694067f7cab2e717e302ee2b.tar.bz2
rails-f28f1d70b3f3dd9f694067f7cab2e717e302ee2b.zip
add instructions for adding additional manifests
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/asset_pipeline.textile6
1 files changed, 5 insertions, 1 deletions
diff --git a/guides/source/asset_pipeline.textile b/guides/source/asset_pipeline.textile
index 982c4aa096..a8d0ac3077 100644
--- a/guides/source/asset_pipeline.textile
+++ b/guides/source/asset_pipeline.textile
@@ -290,7 +290,11 @@ In this example +require_self+ is used. This puts the CSS contained within the f
NOTE. If you want to use multiple Sass files, you should generally use the "Sass +@import+ rule":http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#import instead of these Sprockets directives. Using Sprockets directives all Sass files exist within their own scope, making variables or mixins only available within the document they were defined in.
-You can have as many manifest files as you need. For example the +admin.css+ and +admin.js+ manifest could contain the JS and CSS files that are used for the admin section of an application.
+You can have as many manifest files as you need. For example the +admin.css+ and +admin.js+ manifest could contain the JS and CSS files that are used for the admin section of an application. In order for the pipeline to know about the additional manifest, it has to be added to application.rb.
+
+<plain>
+config.assets.precompile += %w( admin.css )
+</plain>
The same remarks about ordering made above apply. In particular, you can specify individual files and they are compiled in the order specified. For example, you might concatenate three CSS files together this way: