11 lines
193 B
Ruby
11 lines
193 B
Ruby
|
require "vagrant"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module Kernel_V2
|
||
|
class VagrantConfig < Vagrant.plugin("2", :config)
|
||
|
attr_accessor :dotfile_name
|
||
|
attr_accessor :host
|
||
|
end
|
||
|
end
|
||
|
end
|