diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index 9c108d84f9..0000000000 --- a/Vagrantfile +++ /dev/null @@ -1,17 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -Vagrant.configure(2) do |config| - config.vm.box = "ubuntu/trusty64" - config.vm.network "private_network", type: "dhcp" - config.vm.provision "shell", inline: <<-SHELL - sudo apt-get install -y software-properties-common - sudo apt-add-repository ppa:brightbox/ruby-ng - sudo apt-get update - sudo apt-get install -y build-essential git ruby2.3 ruby2.3-dev - sudo apt-get install -y ruby-switch - sudo ruby-switch --set ruby2.3 - gem install bundler - (cd /vagrant; bundle install) - SHELL -end