class Vagrant::Plugin::Remote::Plugin

This is the wrapper class for all Remote plugins.

Constants

LOGGER

The logger for this class.

ROOT_CLASS

Set the root class up to be ourself, so that we can reference this from within methods which are probably in subclasses.

Public Class Methods

manager() click to toggle source

This returns the manager for all Remote plugins.

@return [Remote::Manager]

# File lib/vagrant/plugin/remote/plugin.rb, line 17
def self.manager
  LOGGER.debug("Returning remote manager from plugin")
  @manager ||= Vagrant::Plugin::Remote::Manager.new
end