vagrant/lib/vagrant/plugin.rb

9 lines
234 B
Ruby
Raw Normal View History

2010-09-15 05:10:51 +00:00
module Vagrant
2012-04-20 04:42:35 +00:00
module Plugin
autoload :V1, "vagrant/plugin/v1"
autoload :V2, "vagrant/plugin/v2"
autoload :Manager, "vagrant/plugin/manager"
autoload :StateFile, "vagrant/plugin/state_file"
2010-09-15 05:10:51 +00:00
end
end