2012-04-17 22:12:27 -07:00

16 lines
291 B
Ruby

require "vagrant"
module VagrantPlugins
module Kernel
class VagrantConfig < Vagrant::Config::V1::Base
attr_accessor :dotfile_name
attr_accessor :host
def initialize
@dotfile_name = UNSET_VALUE
@host = UNSET_VALUE
end
end
end
end