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" require "vagrant"
module VagrantPlugins module VagrantPlugins
module Kernel module Kernel_V1
class NFSConfig < Vagrant::Config::V1::Base class NFSConfig < Vagrant::Config::V1::Base
attr_accessor :map_uid attr_accessor :map_uid
attr_accessor :map_gid attr_accessor :map_gid

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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