Sha256: 16398ed402cadbfb98175181ca503e8fbed109a367ca23edf73b9075ac858d8c
Contents?: true
Size: 373 Bytes
Versions: 36
Compression:
Stored size: 373 Bytes
Contents
require "vagrant" module VagrantPlugins module SyncedFolderSMB class Config < Vagrant.plugin("2", :config) attr_accessor :functional def initialize super @functional = UNSET_VALUE end def finalize! @functional = true if @functional == UNSET_VALUE end def to_s "SMB" end end end end
Version data entries
36 entries across 32 versions & 5 rubygems