Renamespace Kernel to Kernel_V1

This commit is contained in:
Mitchell Hashimoto 2012-06-14 18:49:20 -07:00
parent 51be92eeb6
commit bd1def6b22
8 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
require "vagrant"
module VagrantPlugins
module Kernel
module Kernel_V1
class NFSConfig < Vagrant::Config::V1::Base
attr_accessor :map_uid
attr_accessor :map_gid

View File

@ -1,7 +1,7 @@
require "vagrant"
module VagrantPlugins
module Kernel
module Kernel_V1
class PackageConfig < Vagrant::Config::V1::Base
attr_accessor :name
end

View File

@ -1,7 +1,7 @@
require "vagrant"
module VagrantPlugins
module Kernel
module Kernel_V1
class SSHConfig < Vagrant::Config::V1::Base
attr_accessor :username
attr_accessor :password

View File

@ -1,7 +1,7 @@
require "vagrant"
module VagrantPlugins
module Kernel
module Kernel_V1
class VagrantConfig < Vagrant::Config::V1::Base
attr_accessor :dotfile_name
attr_accessor :host

View File

@ -6,7 +6,7 @@ require File.expand_path("../vm_provisioner", __FILE__)
require File.expand_path("../vm_subvm", __FILE__)
module VagrantPlugins
module Kernel
module Kernel_V1
class VMConfig < Vagrant::Config::V1::Base
attr_accessor :name
attr_accessor :auto_port_range

View File

@ -1,7 +1,7 @@
require 'log4r'
module VagrantPlugins
module Kernel
module Kernel_V1
# Represents a single configured provisioner for a VM.
class VagrantConfigProvisioner
attr_reader :shortcut

View File

@ -1,7 +1,7 @@
require "vagrant/util/stacked_proc_runner"
module VagrantPlugins
module Kernel
module Kernel_V1
# Represents a single sub-VM in a multi-VM environment.
class VagrantConfigSubVM
include Vagrant::Util::StackedProcRunner

View File

@ -1,7 +1,7 @@
require "vagrant"
module VagrantPlugins
module Kernel
module Kernel_V1
# This is the "kernel" of Vagrant and contains the configuration classes
# that make up the core of Vagrant.
class Plugin < Vagrant.plugin("1")