I have been trying to compile the application.sass in my Sencha Touch project into application.css.
According to sencha touch's forum, to compile the sass, I only needed to install compass & chunky_png. That is exactly what I've done. The following are my gems
compass (0.11.beta.7) chunky_png (1.1.2, 1.1.0)
When I compile the sass. The resulting css seems to contain the included resource from the sass. However, all the png are translated into weird characters. I realize that it is trying to encode the image into base 64, but as far as I know, base 64 strings basically consists of A-Z a-z 0-9 + /, all being readable characters.
Using this generated application.css, my sencha touch app cannot read any of the encoded pngs at all. Can anyone help me?