diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b445c5..5cff2be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,11 @@ -## 0.1.1 (unreleased) +## [0.1.1](https://github.com/fgrehm/vagrant-cachier/compare/v0.1.0...v0.1.1) (July 10, 2013) FEATURES: - Support enabling NFS for root cache folder. [GH-7] - - Support RVM bucket -## 0.1.0 (June 9, 2013) +## [0.1.0](https://github.com/fgrehm/vagrant-cachier/compare/v0.0.6...v0.1.0) (June 9, 2013) IMPROVEMENTS: diff --git a/Gemfile.lock b/Gemfile.lock index 630680f..b93c50d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -20,7 +20,7 @@ GIT PATH remote: . specs: - vagrant-cachier (0.1.0) + vagrant-cachier (0.1.1) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 135c8df..e0f86e4 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ from this plugin. ```ruby Vagrant.configure("2") do |config| - config.vm.box = 'some-box-with-ruby-installed' + config.vm.box = 'some-box-with-rvm-installed' config.cache.enable :rvm end ``` diff --git a/development/Vagrantfile b/development/Vagrantfile index fb00d2d..2992970 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -54,5 +54,10 @@ Vagrant.configure("2") do |config| time sudo pacman -Syu --noconfirm libffi git fi' end - config.vm.provision :shell, inline: '\curl -L https://get.rvm.io | bash -s stable' + + config.vm.provision :shell, inline: ' + if ! [ -d /home/vagrant/.rvm ]; then + HOME=/home/vagrant su -p vagrant -c "curl -L https://get.rvm.io | bash -s stable" + fi + ' end diff --git a/lib/vagrant-cachier/version.rb b/lib/vagrant-cachier/version.rb index fe757d8..44c08fe 100644 --- a/lib/vagrant-cachier/version.rb +++ b/lib/vagrant-cachier/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Cachier - VERSION = "0.1.0" + VERSION = "0.1.1" end end