From 99a930384909be57ada7d9a2d1a5aa81b8dce689 Mon Sep 17 00:00:00 2001 From: Paul Nikitochkin Date: Tue, 6 Aug 2013 14:30:46 +0300 Subject: #11759: Update Assets Pipeline Guide by default included to precompile only non-js/css files from `app/assets` and `application.(css|js)` --- guides/source/asset_pipeline.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 7334e8b843..639a00817b 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -682,10 +682,10 @@ the cached page. The default matcher for compiling files includes `application.js`, `application.css` and all non-JS/CSS files (this will include all image assets -automatically): +automatically) from `app/assets` folders including your gems: ```ruby -[ Proc.new { |path| !%w(.js .css).include?(File.extname(path)) }, +[ Proc.new { |path, fn| fn =~ /app\/assets/ && !%w(.js .css).include?(File.extname(path)) }, /application.(css|js)$/ ] ``` -- cgit v1.2.3