Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No such framework "susy" using compass

I'm trying to create a compass project using the susy grid.

$ compass create --using susy test
No such framework: "susy"

I am using git-bash on Windows 7. I have Ruby 2.0.0p451, Sass 3.3.8 and Compass 0.12.6 installed. I have require 'susy' in my config.rb file.

like image 794
evolutionxbox Avatar asked Jun 09 '14 10:06

evolutionxbox


2 Answers

I have the same problem and i am working with compass so, be sure that you first have:

$ gem install compass-rails
$ gem install sass-rails
$ gem install susy

voilà

like image 194
juandiegoles Avatar answered Oct 04 '22 11:10

juandiegoles


Thanks to Eric M Suzanne, I installed a pre-release version of compass 1.0 (now available as 1.0.1 stable) using gem install compass --pre.

This solved the issue.

like image 21
evolutionxbox Avatar answered Oct 04 '22 10:10

evolutionxbox