Mitchell Hashimoto 5a33b7ee54 Hosts to V2
2012-11-06 21:20:22 -08:00

16 lines
290 B
Ruby

require "vagrant"
module VagrantPlugins
module HostWindows
class Plugin < Vagrant.plugin("2")
name "Windows host"
description "Windows host support."
host("windows") do
require File.expand_path("../host", __FILE__)
Host
end
end
end
end