From my understanding, Compass only works with Ruby. Is there a PHP equivalent to Compass?

link|improve this question

feedback

1 Answer

up vote 14 down vote accepted

Compass actually works great for PHP projects. I've used it on several CakePHP and Symfony projects. Compass is built with Ruby, so you need Ruby on your machine, but it compiles to plain old CSS. If you have Ruby (and RubyGems) installed, just install the Compass gem and you should be ready to go. Earlier versions of Compass used a Ruby-style syntax, but my understanding is that later versions have adopted a more CSS-like option.

If you haven't already, start with the documentation where installation is discussed in more detail.

link|improve this answer
Ha! I hadn't really considered using PHP and Ruby together. Makes sense, thanks! – Bryan Downing Jun 14 '10 at 17:54
Yes, it is ruby as compile time dependency, but not as runtime dependency. Ruby projects can actually skip the compilation by making its web framework compile things as needed (several plugins are provided for Sinatra, Rails and others.) – Daniel Ribeiro Aug 21 '10 at 22:25
I am working on Compass Extensions to support Drupal, since i find them both to work out really great. Just compile before uploading. – barraponto Oct 17 '10 at 23:52
Let me get this straight. You need ruby as compile-time dependency to initially get the compass framework installed into the project (and to add extensions, etc...) but you don't need it on the production server? I would prefer to remove ruby as a requirement on the production server if possible (on the development server it doesn't really matter). – Evan Plaice Feb 6 '11 at 4:55
Evan: that is correct. The SASS code is compiled to plain old CSS, so just deploy the css files and there's no need for Ruby on any upstream servers. – Rob Wilkerson Feb 6 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.