Skip to content

Instantly share code, notes, and snippets.

@juanvgarcia
Created April 23, 2014 05:20
Show Gist options
  • Save juanvgarcia/11203503 to your computer and use it in GitHub Desktop.
Save juanvgarcia/11203503 to your computer and use it in GitHub Desktop.
Shell script to install Ruby from a newly installed Vagrant VM.
#!/bin/sh
sudo apt-get update
sudo apt-get install curl
curl -L get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm requirements
rvm install ruby 2.1.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment