Merge pull request #5629 from brooksbrown/docs-vagrantfile-update

added gpg signature for rvm and bundle gem install to the docs Vagrantfile
This commit is contained in:
Seth Vargo 2015-05-30 20:44:20 -07:00
commit 4e23b0293f
1 changed files with 2 additions and 0 deletions

View File

@ -4,11 +4,13 @@
$script = <<SCRIPT
sudo apt-get -y update
sudo apt-get -y install curl
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -sSL https://get.rvm.io | bash -s stable
. ~/.bashrc
. ~/.bash_profile
rvm install 2.0.0
rvm --default use 2.0.0
gem install bundle
cd /vagrant
bundle
SCRIPT