The future of subclassing things like configuration bases and so on will
be to use `Vagrant.plugin(version, component)`. For example:
`Vagrant.plugin("1", :provisioner)`.
14 lines
279 B
Ruby
14 lines
279 B
Ruby
require "log4r"
|
|
|
|
require "vagrant/plugin/v1/errors"
|
|
|
|
module Vagrant
|
|
module Plugin
|
|
module V1
|
|
autoload :Config, "vagrant/plugin/v1/config"
|
|
autoload :Plugin, "vagrant/plugin/v1/plugin"
|
|
autoload :Provisioner, "vagrant/plugin/v1/provisioner"
|
|
end
|
|
end
|
|
end
|