Created
April 28, 2012 20:45
-
-
Save joncode/2521919 to your computer and use it in GitHub Desktop.
installing Compass Gem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> gem install 'compass' | |
add to Gemfile in app - assets block | |
group :assets do | |
gem 'compass' | |
gem 'sass-rails', '~> 3.1.4' | |
# gem 'coffee-rails', '~> 3.1.1' | |
# gem 'uglifier', '>= 1.0.3' | |
end | |
> bundle install | |
- this really shouldn't be necessary | |
extra info ... | |
http://blog.danielfischer.com/2011/04/18/quickstart-guide-to-using-compass-haml-sass-scss-with-rails-3/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment