Sha256: 01814a9d1f45813699e1bd68aed2677251734fba6b244ee4050e02d98c01e9f7
Contents?: true
Size: 380 Bytes
Versions: 27
Compression:
Stored size: 380 Bytes
Contents
require "vagrant" module VagrantPlugins module Kernel_V2 class VagrantConfig < Vagrant.plugin("2", :config) attr_accessor :host def initialize @host = UNSET_VALUE end def finalize! @host = :detect if @host == UNSET_VALUE @host = @host.to_sym if @host end def to_s "Vagrant" end end end end
Version data entries
27 entries across 24 versions & 5 rubygems