Reputation: 2262
I have installed Sass, and Compass using:
gem install sass
gem install compass
And now I'm trying to integrate Sass, Compass with Assetic on symfony2. But what I don't understand is How Symfony2 does to find the Sass and Compass instalations on my system (Windows 8) ?
Upvotes: 0
Views: 1154
Reputation: 979
You can provide the path to the executable as part of your assetic config, this is covered in the docs;
http://symfony.com/doc/current/reference/configuration/assetic.html
Upvotes: 1