Pixelomo
Pixelomo

Reputation: 6737

Susy gem install breaking SASS

Hi I've just installed SASS and Compass in to my project folder using the command terminal, I've configured my Grunt file so that every time I save my SASS it updates my CSS and live reloads the page. I've just tried to install Susy, the install goes fine using gem install susy but now when I save a change in my SASS files this message appears on the terminal:

enter image description here

It says done without errors but the CSS isn't updating and the live reloads isn;t working either. I've at least managed to get it back to it's previous state using

`gem uninstall susy`

`gem uninstall compass gem uninstall sass`

`gem install sass --version "3.2.10"`

`gem install compass --version "0.12.2"`

my config.rb file is set up like this

`require 'susy'
css_dir = '_/css'
sass_dir = '_/components/sass'
javascripts_dir = '_/js'
output_style = :compressed`

I'm new to this any help would be appreciated - should I install different versions of SASS/Compass/Susy?

Update

Having looked at this question it may be that susy and compass require different version of SASS and are currently conflicting

Upvotes: 0

Views: 953

Answers (1)

Pixelomo
Pixelomo

Reputation: 6737

installing pre-release versions of compass fixed this gem install compass --pre

Upvotes: 1

Related Questions