From 233ec887ebc16d944616a560a8d7ecaaa42ba70f Mon Sep 17 00:00:00 2001 From: Scott Davis Date: Wed, 11 Jan 2012 23:24:00 -0500 Subject: [PATCH] compass command is now bundler aware --- bin/compass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/compass b/bin/compass index d4de4cd4..7eef5c77 100755 --- a/bin/compass +++ b/bin/compass @@ -21,6 +21,10 @@ fallback_load_path(File.join(File.dirname(__FILE__), '..', 'lib')) do require 'compass/exec' end +if defined?(Bundler) + Bundler.require :default, :assets +end + runner = Proc.new do Compass::Exec::SubCommandUI.new(ARGV).run! end