vagrant/plugins/hosts/arch/plugin.rb

16 lines
278 B
Ruby
Raw Normal View History

2012-04-19 05:20:45 +00:00
require "vagrant"
module VagrantPlugins
module HostArch
2012-11-07 05:20:22 +00:00
class Plugin < Vagrant.plugin("2")
2012-04-19 05:20:45 +00:00
name "Arch host"
description "Arch host support."
2012-05-23 23:03:14 +00:00
host("arch") do
require File.expand_path("../host", __FILE__)
Host
end
2012-04-19 05:20:45 +00:00
end
end
end