Skip to content

Instantly share code, notes, and snippets.

@asanchez75
Forked from amites/centos_install_compass.sh
Created October 1, 2016 10:54
Show Gist options
  • Save asanchez75/b3dab159022be37253ef03aae236a507 to your computer and use it in GitHub Desktop.
Save asanchez75/b3dab159022be37253ef03aae236a507 to your computer and use it in GitHub Desktop.
bash script to install sass/compass onto centos
#! /bin/bash
# Sass: http://sass-lang.com/
# Sass is a "smart" form of css, supporting nested targeting of html, variables and logic
# scss is a variant of sass using a syntax much closer to css
# Compass: http://compass-style.org/
# Compass is a sass framework containing a range of shortcuts for cross-browser css effects.
# rounded corners, transparency...
# and a command line tool to compile sass/scss into css
# compass compile # compile sass into css using config.rb (see site for more)
# compass watch # auto-compile on file changes to sass
yum install -y ruby-devel rubygems
gem install compass json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment