Skip to content

Instantly share code, notes, and snippets.

@heyman
Created December 5, 2012 19:30
Show Gist options
  • Save heyman/4218751 to your computer and use it in GitHub Desktop.
Save heyman/4218751 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# set terminal to UTF8 (otherwise `gem install foreman` fails)
export LANG=en_CA.UTF-8
# set up ruby env
mkdir ruby-gems
echo $HOME
echo `pwd`
export GEM_HOME=$HOME/.ruby-gems
export PATH=$PATH:$HOME/.ruby-gems/bin
# install SASS
gem install sass --verbose
# install foreman
gem install foreman --verbose
ls -al $HOME/.ruby-gems
# build assets
python manage.py assets build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment