diff options
| author | mo khan <mo@mokhan.ca> | 2013-05-12 16:04:06 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2013-05-12 16:04:06 -0600 |
| commit | 3fc444792ebff667aa3771b83d1b2107966c5b4c (patch) | |
| tree | 767b8242e6f32480aa81c6b7cab5f9b7095242ed /script/bootstrap-vagrant.sh | |
| parent | 5d8b4bf7881bf30b2e208c16c46429e837d8cc6f (diff) | |
add script to provision vagrant vm
Diffstat (limited to 'script/bootstrap-vagrant.sh')
| -rw-r--r-- | script/bootstrap-vagrant.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/script/bootstrap-vagrant.sh b/script/bootstrap-vagrant.sh new file mode 100644 index 00000000..aaac3238 --- /dev/null +++ b/script/bootstrap-vagrant.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +cd /home/vagrant +\curl -L https://get.rvm.io | bash -s stable + +source /home/vagrant/.profile +source /home/vagrant/.rvm/scripts/rvm + +rvm install 2.0.0 +rvm install 1.9.3 +rvm use 2.0.0 --default + +#gem source -r http://rubygems.org/ +#gem install bundler + +source /home/vagrant/.bashrc +source /home/vagrant/.bash_profile +source /home/vagrant/.profile |
