Skip to content

Instantly share code, notes, and snippets.

@st44100
Created October 18, 2011 04:26
Show Gist options
  • Save st44100/1294608 to your computer and use it in GitHub Desktop.
Save st44100/1294608 to your computer and use it in GitHub Desktop.
Setting Compass for old Sencha Touch scss files
# Compassのバージョンを確認
$ compass -v
Compass 0.11.5 (Antares)
# Compassのバージョンを下げる(0.10.6にする)
$ gem install compass --version=0.10.6
Fetching: compass-0.10.6.gem (100%)
Successfully installed compass-0.10.6
1 gem installed
Installing ri documentation for compass-0.10.6...
Installing RDoc documentation for compass-0.10.6...
$ compass -v
Compass 0.10.6
# hamlのバージョンの確認
$ haml -v
Haml 3.1.3 (Separated Sally)
# Compass0.10.6はhaml3.0.4以上じゃないとダメで、3.1.3でもだめ。
# haml 3.1.3 を消す
$ gem uninstall haml -v 3.1.3
Successfully uninstalled haml-3.1.3
# haml 3.0.4を改めてinstall
$ gem install haml -v 3.0.4
Fetching: haml-3.0.4.gem (100%)
Successfully installed haml-3.0.4
1 gem installed
Installing ri documentation for haml-3.0.4...
Installing RDoc documentation for haml-3.0.4...
$ haml -v
Haml/Sass 3.0.4 (Classy Cassidy)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment