codekit external compass compiler path

3.1k views Asked by At

I'm working on someone else's project that was built in wordpress and foundation with compass. I only need to change one line of css, but Codekit keeps throwing up "unable to compile files" messages whenever I save the .scss file.

I know that this is a result of the require statement in the project's config.rb file and that codekit doesn't play well with rvm. The solution should be to change codekit's advanced compiler settings to the compass gem I've installed via the command line in my system files (/usr/bin/compass). The problem is that when I do this it just throws up a "Failed to switch compiler" message.

I'm a noob with ruby, gems, rvm and command line stuff so I can't tell if I'm missing something painfully obvious or not here. Any insight would be greatly appreciated, I'm lost!

1

There are 1 answers

3
mpapis On

I assume you use rvm as you tagged your question with it, so what you need to do is:

  1. make sure rvm is up to date:

    rvm get stable
    
  2. make sure ruby is selected (and installed):

    rvm use ruby --install
    
  3. make sure the gem is installed:

    gem install compass
    
  4. now print the path to compass wrapper:

    ls $GEM_HOME/wrappers/compass
    

    Use this path to setup your compass.

Make sure to read messages on all the outputs, they are important, if there are errors or warnings make sure they are resolved before you continue.