Jeflopo
Jeflopo

Reputation: 2262

How Symfony2 know where are sass and compass installed?

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

Answers (1)

Chris Sedlmayr
Chris Sedlmayr

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

Related Questions