Last active
August 29, 2015 14:01
-
-
Save timmahoney/20b1ea95dbcbab392af6 to your computer and use it in GitHub Desktop.
Vagrant CentOS RVM Rails
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
#!/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