I just migrated my project files onto a new PC on the D:
drive whilst my programs (Git, Node Js, Ruby, etc) are on the C:
drive.
I have tri
Looks like issue is solved in SASS 3.2.19
so all you need is gem update compass
To get it to work in 32 or 64bit windows, I done what Min Ren suggested but I also had to manually clean the gem repository (C:\Users\myusername\.gem\specs\rubygems.org%443\quick\Marshal.4.8
) of all the sass and compass gemspec files after the uninstall steps. I also installed sass before compass.
gem uninstall compass
gem uninstall sass
manually clean .gem
gem install sass --version "3.2.10"
gem install compass --version "0.12.2"
Issue got resolved for me when I ran the cygwin command prompt window as administrator.