vagrant/plugins/hosts/bsd/plugin.rb

15 lines
262 B
Ruby
Raw Normal View History

2012-04-19 05:20:45 +00:00
require "vagrant"
module VagrantPlugins
module HostBSD
autoload :Host, File.expand_path("../host", __FILE__)
class Plugin < Vagrant.plugin("1")
name "BSD host"
description "BSD host support."
host("bsd") { Host }
end
end
end