Sha256: 786c7bd265a73d7d747498c416c25999170a477de3c33e13c1511c776fc79428
Contents?: true
Size: 570 Bytes
Versions: 5
Compression:
Stored size: 570 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure # configures the configuration version (we support older styles for # backwards compatibility). Please don't change it unless you know what # you're doing. Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" config.vm.provision :shell, path: "bootstrap.sh" config.vm.provision :shell, path: "install-rvm.sh", args: "stable", privileged: false config.vm.provision :shell, path: "install-ruby.sh", args: "2.3.1", privileged: false end
Version data entries
5 entries across 5 versions & 1 rubygems