Forgot an autoload for plugins
This commit is contained in:
parent
b568ad0b8a
commit
85e458b9a8
|
@ -43,6 +43,7 @@ module VagrantPlugins
|
||||||
action_root = Pathname.new(File.expand_path("../action", __FILE__))
|
action_root = Pathname.new(File.expand_path("../action", __FILE__))
|
||||||
autoload :BundlerCheck, action_root.join("bundler_check")
|
autoload :BundlerCheck, action_root.join("bundler_check")
|
||||||
autoload :InstallGem, action_root.join("install_gem")
|
autoload :InstallGem, action_root.join("install_gem")
|
||||||
|
autoload :LicensePlugin, action_root.join("license_plugin")
|
||||||
autoload :ListPlugins, action_root.join("list_plugins")
|
autoload :ListPlugins, action_root.join("list_plugins")
|
||||||
autoload :PruneGems, action_root.join("prune_gems")
|
autoload :PruneGems, action_root.join("prune_gems")
|
||||||
autoload :UninstallPlugin, action_root.join("uninstall_plugin")
|
autoload :UninstallPlugin, action_root.join("uninstall_plugin")
|
||||||
|
|
Loading…
Reference in New Issue