Merge 8eadd6bca3
into 5f26cade6c
This commit is contained in:
commit
dede67eaab
5 changed files with 11 additions and 7 deletions
|
@ -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:
|
FEATURES:
|
||||||
|
|
||||||
- Support enabling NFS for root cache folder. [GH-7]
|
- Support enabling NFS for root cache folder. [GH-7]
|
||||||
|
|
||||||
- Support RVM bucket
|
- 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:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ GIT
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
vagrant-cachier (0.1.0)
|
vagrant-cachier (0.1.1)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
|
|
|
@ -188,7 +188,7 @@ from this plugin.
|
||||||
|
|
||||||
```ruby
|
```ruby
|
||||||
Vagrant.configure("2") do |config|
|
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
|
config.cache.enable :rvm
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
7
development/Vagrantfile
vendored
7
development/Vagrantfile
vendored
|
@ -54,5 +54,10 @@ Vagrant.configure("2") do |config|
|
||||||
time sudo pacman -Syu --noconfirm libffi git
|
time sudo pacman -Syu --noconfirm libffi git
|
||||||
fi'
|
fi'
|
||||||
end
|
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
|
end
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module VagrantPlugins
|
module VagrantPlugins
|
||||||
module Cachier
|
module Cachier
|
||||||
VERSION = "0.1.0"
|
VERSION = "0.1.1"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue