From 33151ed9eb8c1b04371df041defd78bd02628c76 Mon Sep 17 00:00:00 2001 From: Dominick Reinhold Date: Mon, 15 Feb 2016 11:31:15 -0800 Subject: [PATCH] Grunt task for compass should prefix command with 'bundle exec' - Since we're stating that compass is a development dependency in our gemspec, and we use bundle to install it, we should make sure that grunt is using the correct (bundled) version of compass. - This is especially important since many of the older versions of compass are buggy (see https://github.com/gruntjs/grunt-contrib-compass/issues/204) --- grunt/config/compass.js | 1 + 1 file changed, 1 insertion(+) diff --git a/grunt/config/compass.js b/grunt/config/compass.js index 4c224ff6..a1b03604 100644 --- a/grunt/config/compass.js +++ b/grunt/config/compass.js @@ -5,6 +5,7 @@ module.exports = { sassDir: 'src/html', outputStyle: 'compact', noLineComments: true, + bundleExec: true } } };