14 lines
203 B
Ruby
14 lines
203 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module Kernel_V2
|
|
class VagrantConfig < Vagrant.plugin("2", :config)
|
|
attr_accessor :host
|
|
|
|
def to_s
|
|
"Vagrant"
|
|
end
|
|
end
|
|
end
|
|
end
|