I have an existing project that I build with grunt and would like to add Susy. The build works fine without Susy.
It looks like Breakpoint should be used with Susy. Both of these require Sass to be at least V3.3. And from the CLI it is: Sass 3.3.10 (Maptastic Maple).
I used Gem Compass to get the latest version of Compass (Compass 0.12.6). But it uses (and installed) a version of sass (sass-3.2.19.gem) that is incompatible with Susy and Breakpoint.
After adding Susy to the Compass task in grunt, I get:
Gem::LoadError on line ["2064"] of /home/paul/.rvm/rubies/ruby-2.1.0/lib/ruby/site_ruby/2.1.0/rubygems/specification.rb: Unable to activate susy-2.1.2, because sass-3.2.19 conflicts with sass (~> 3.3.0)
I would like to minimize my use of Ruby. This project does not have have a config.rb. (That means that I would prefer not to get a solution like "Use Bundler".)
I figure I must be missing something basic.