This commit is contained in:
Fabio Rehm 2013-07-10 17:00:15 -07:00
commit dede67eaab
5 changed files with 11 additions and 7 deletions

View file

@ -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:

View file

@ -20,7 +20,7 @@ GIT
PATH
remote: .
specs:
vagrant-cachier (0.1.0)
vagrant-cachier (0.1.1)
GEM
remote: https://rubygems.org/

View file

@ -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
```

View file

@ -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

View file

@ -1,5 +1,5 @@
module VagrantPlugins
module Cachier
VERSION = "0.1.0"
VERSION = "0.1.1"
end
end