1
0
Fork 0
mirror of https://github.com/thoughtbot/capybara-webkit synced 2023-03-27 23:22:28 -04:00
capybara-webkit/Vagrantfile
George Brocklehurst a4a0034b29 Add Vagrant configuration.
capybara-webkit has various development dependencies which can be a little
cumbersome to manage. With vagrant they can all be nicely bundled up in a VM and
installed automatically.
2013-01-16 23:05:58 +01:00

7 lines
166 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "precise32"
config.vm.provision :shell, :path => 'vagrant_setup.sh'
end