vagrant/plugins/hosts/null/plugin.rb

16 lines
277 B
Ruby
Raw Normal View History

2014-01-08 03:26:03 +00:00
require "vagrant"
module VagrantPlugins
module HostNull
class Plugin < Vagrant.plugin("2")
name "null host"
description "A host that implements no capabilities."
host("null") do
require_relative "host"
Host
end
end
end
end