mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
a4a0034b29
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.
7 lines
166 B
Ruby
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
|