Sha256: c2953037806498c51e43e052a47ca048da4fc5a7c30cc8701ca0d43dafff8f9b
Contents?: true
Size: 642 Bytes
Versions: 1
Compression:
Stored size: 642 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" REQUIRED_PLUGINS = %w(vagrant-vbguest) exit unless REQUIRED_PLUGINS.all? do |plugin| Vagrant.has_plugin?(plugin) || ( puts "The #{plugin} plugin is required. Please install it with:" puts "$ vagrant plugin install #{plugin}" false ) end Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.ssh.forward_agent = true config.vm.box = "litaio/development-environment" config.vm.hostname = "lita-dev" config.vm.network "forwarded_port", guest: 8080, host: 8080 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lita-boardgamegeek-0.1.0 | Vagrantfile |