diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-03 22:07:33 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-03-03 22:07:33 +0530 |
commit | f097f5a51a35598dcf72d62f3bae63663a05182b (patch) | |
tree | 3924b06aa4b3300c7a4d81105b1d05106fc7c846 | |
parent | cf65057c65bd7e140b0b816e1f691e1afaf4a157 (diff) | |
download | rails-f097f5a51a35598dcf72d62f3bae63663a05182b.tar.gz rails-f097f5a51a35598dcf72d62f3bae63663a05182b.tar.bz2 rails-f097f5a51a35598dcf72d62f3bae63663a05182b.zip |
copy edits [ci skip]
-rw-r--r-- | railties/guides/source/asset_pipeline.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile index 9ba2e235bc..a061c1fc16 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -429,7 +429,7 @@ The default matcher for compiling files includes +application.js+, +application. [ Proc.new{ |path| !File.extname(path).in?(['.js', '.css']) }, /application.(css|js)$/ ] </ruby> -NB: the matcher (and other members of the precompile array; see below) is applied to the final compiled file name. This means that anything that compiles to JS/CSS is excluded, as well as raw JS/CSS files; for example, +.coffee+ and +.scss+ files are *not* automatically included as they compile to JS/CSS. +NOTE. The matcher (and other members of the precompile array; see below) is applied to final compiled file names. This means that anything that compiles to JS/CSS is excluded, as well as raw JS/CSS files; for example, +.coffee+ and +.scss+ files are *not* automatically included as they compile to JS/CSS. If you have other manifests or individual stylesheets and JavaScript files to include, you can add them to the +precompile+ array: |