Class: VagrantShellCommander::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-shell-commander/config.rb

Overview

Configuration options

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Initialize override, setting config options default values for merging



8
9
10
11
12
# File 'lib/vagrant-shell-commander/config.rb', line 8

def initialize
  super

  @after_share_folders = UNSET_VALUE
end

Instance Attribute Details

#after_share_foldersObject

Returns the value of attribute after_share_folders.



4
5
6
# File 'lib/vagrant-shell-commander/config.rb', line 4

def after_share_folders
  @after_share_folders
end

Instance Method Details

#finalize!Object

finalize! override, unseting config options



15
16
17
# File 'lib/vagrant-shell-commander/config.rb', line 15

def finalize!
  @after_share_folders = nil if @after_share_folders == UNSET_VALUE
end