Compass SCSS lower case of color code

compass-sass, css, ruby, sass

Solution

Is should check version of "sass".

sass -v

Sass version 3.1.15 works fine in my case. Uninstall all installed "sass" versions with

gem uninstall sass

and install 3.1.15 version

gem install sass -v 3.1.15

Problem

In my team we have the same version of Compass (it`s Compass 0.12.2 Alnilam). When Compass compiles my SCSS the color code is changed from uppercase (#A0CAE3) to lowercase (#a0cae3) in the SCSS. Only I have this problem, other developers have the uppercase color code. Why?

Original source