Skip to content

Instantly share code, notes, and snippets.

@timmahoney
Last active August 29, 2015 14:01
Show Gist options
  • Save timmahoney/20b1ea95dbcbab392af6 to your computer and use it in GitHub Desktop.
Save timmahoney/20b1ea95dbcbab392af6 to your computer and use it in GitHub Desktop.
Vagrant CentOS RVM Rails
#!/bin/bash
# CentOS box for Vagrantfile:
# http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-x86_64-v20130427.box
#
# NOT AS ROOT
sudo yum -y groupinstall "Development Tools"
sudo yum -y install libyaml-devel
curl -sSL https://get.rvm.io | bash -s stable --ruby
source ~/.profile
gem install --no-rdoc --no-ri rails unicorn unicorn-rails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment