Sha256: 78873dd671746f09203fcd9c102dc1b2bba993228d1ebbc742c5c8fe9bb74089

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

require "log4r"

# We don't autoload components because if we're loading anything in the
# V2 namespace anyways, then we're going to need the Components class.
require "vagrant/plugin/v2/components"
require "vagrant/plugin/v2/errors"

module Vagrant
  module Plugin
    module V2
      autoload :Command, "vagrant/plugin/v2/command"
      autoload :Communicator, "vagrant/plugin/v2/communicator"
      autoload :Components, "vagrant/plugin/v2/components"
      autoload :Config, "vagrant/plugin/v2/config"
      autoload :Guest,  "vagrant/plugin/v2/guest"
      autoload :Host,   "vagrant/plugin/v2/host"
      autoload :Manager, "vagrant/plugin/v2/manager"
      autoload :Plugin, "vagrant/plugin/v2/plugin"
      autoload :Provider, "vagrant/plugin/v2/provider"
      autoload :Push, "vagrant/plugin/v2/push"
      autoload :Provisioner, "vagrant/plugin/v2/provisioner"
      autoload :SyncedFolder, "vagrant/plugin/v2/synced_folder"
      autoload :Trigger, "vagrant/plugin/v2/trigger"

      # Errors
      autoload :Error, "vagrant/plugin/v2/error"
      autoload :InvalidCommandName, "vagrant/plugin/v2/error"
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
vagrant-unbundled-2.3.6.0 lib/vagrant/plugin/v2.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/lib/vagrant/plugin/v2.rb
vagrant-unbundled-2.3.3.0 lib/vagrant/plugin/v2.rb
vagrant-unbundled-2.3.2.0 lib/vagrant/plugin/v2.rb
vagrant-unbundled-2.2.19.0 lib/vagrant/plugin/v2.rb
vagrant-unbundled-2.2.18.0 lib/vagrant/plugin/v2.rb