ruby版本:ruby 2.3.1p112 (2016-04-26 revision 54768) [x64-mingw32]
sass版本:Sass 3.4.22 (Selective Steve)
webStorm 11.0.3
解決目錄帶中文問題:
Encoding::CompatibilityError: incompatible character encodings: GBK and UTF-8

打開--trace

出現如下提示信息:filesystem.rb 87行的index
找到文件lib\ruby\gems\2.3.0\gems\sass-3.4.22\lib\sass\importers\filesystem.rb的87行

添加encode("utf-8",'gbk')

測試:

結果:

如果scss文件中帶中文會報錯,解決方法如上圖中第一行添加
@charset "UTF-8";
ruby編碼參考:
http://blog.csdn.net/five3/article/details/8966280?locationNum=9&fps=1
