Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I downgrade to an old version of compass using gem install?

I've been using compass from http://compass-style.org/ to manage my sites css for a long time. I just installed the newest version and I get a rather unpleasant error, that has as a side effect corrupted all my css files. How do I downgrade to an older version of this?

Thanks, Matt

like image 575
Matt Lynn Avatar asked Jun 21 '10 20:06

Matt Lynn


1 Answers

I just had a similar situation and there is something else missing from @corroded answer. Since @Matt Lynn is downgrading, he needs to uninstall the existing version of compass.

$ sudo gem uninstall compass  $ sudo gem install compass --version versionnumber 

Otherwise you will end up with two different versions of compass.

like image 102
Jaspero Avatar answered Sep 17 '22 17:09

Jaspero