Ruby Environment Sass Compile Chinese syntax error:invalid GBK character Error resolution method,
Sass file compile time using the ruby environment, whether it is the interface of the Koala tool or command-line mode can not pass, it is annoying.
Easy to appear in Chinese comments when can not compile through, or garbled, find a few days of solution finally solved.
The wonderful thing about this problem is that there is no problem in the XP environment, just the one that appears in the Windows7 environment.
Sass compile time, the following error resolution is present:
Syntax error: Invalid GBK character "\xE5"
on line 8 of E:\work\sass\sass\_big_box.scss
from line 16 of E:\work\sass\sass\main.scss
Use --trace for backtrace.
Or
Syntax error: Invalid GBK character "\xE5"
on line 2 of E:\work\sass\sass\main.scss
Use --trace for backtrace
Workaround:
1.koala Visual Compilation tool,
Locate the engine.rb file under the sass-3.3.7 module in the installation directory, such as the following path:
C:\Program Files (x86) \koala\rubygems\gems\sass-3.3.7\lib\sass
ENGINE.RB in this file, add a line of code
encoding.default_external = Encoding.find (' Utf-8 ')
After all the require XXXX can be placed.
2. Command-line tools similarly
Find the installation directory for Ruby, which also has a sass module, such as this path:
C:\Ruby\lib\ruby\gems\1.9.1\gems\sass-3.3.14\lib\sass
In this file engine.rb, add a line of code (same method 1)
encoding.default_external = Encoding.find (' Utf-8 ')
After all the require XXXX can be placed.
Ruby Environment Sass Compile Chinese syntax error:invalid GBK character Error Resolution