The versions mentioned in @ lollerskates666 work, but I had to specifically remove sass version 3.3.4, which came down when I installed the compass.
If someone else, if you have this problem, I had to run the following rules to make it work:
gem install compass --version 0.12.2
This sets the compass as well as Sass 3.3.4 (Maptastic Maple). These two versions, combined with --sourcemap, do not seem to play well, so you need to install an older version of Sass:
gem install sass --pre --version 3.3.0.alpha.149
Although you have already installed it, follow these steps:
sass --v
Ruby will still use Sass 3.3.4, so you will need to uninstall this version:
gem uninstall sass **Select number assigned to version 3.3.4**
Now if you run:
sass --v
You should see:
Sass 3.3.0.alpha.149 (Bleeding Edge)
Sass should now work with libc compass, as well as create source maps that Chrome can read :)
I ran this command to view my scss files:
sass --watch --sourcemap --compass --style compressed scss:css
Hope this helps!
** I run this on Mac, but the same versions work fine :)
source share