I am building a script in Ruby where I would like to compile a single SCSS file using Compass. I am trying to make this as simple as possible, and would like to avoid using a config.rb file. I just want to set a couple settings via straight Ruby and tell Compass to compile a single SCSS file into a CSS file.
I know that this has to be possible but I have not been able to find any decent documentation on how to do it. Any help would be appreciated.
You're right, there's not really any comprehensive documentation on how to use Compass from Ruby. This is unfortunate, but let's not let little details like documentation stop us!
A First Attempt
When I was looking to do the same thing, I just poked around the Compass source and was able put together this little Ruby script. At first glance it seems to do the trick:
But apparently Compass has a bunch of default configuration options that aren't automatically included when invoking the compiler constructor directly (of which the SASS
load_path
is one). This can lead to errors when trying to import Compass functions and mixins, such as:Compass <1.0.0 (a.k.a. "the old way")
Here's how to call the compiler without overriding those defaults:
However, as of Compass version 1.0.0,
Compass.compiler
has been deprecated in favor ofCompass.sass_compiler
, leading to...Compass >=1.0.0 (a.k.a. "the new way")
With thanks to @philipp for finding how to use the new API, we can update this snippet again to work with
Compass.sass_compiler
:Just call the compile method from the command line. You can specify every option there. To see all of the options, run
compass help compile
.Below's an example. It will output the compiled css file in the same directory as the test.scss file.
You could specify and interpolate as many options as you wish. Also check this for running commands in ruby:
Running command line commands within Ruby script