Class: VagrantPlugins::ShellCommander::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



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

def initialize
  super
  
  @after_share_folders = UNSET_VALUE
end

Instance Attribute Details

#after_share_foldersObject

Returns the value of attribute after_share_folders.



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

def after_share_folders
  @after_share_folders
end

Instance Method Details

#finalize!Object

finalize! override, unseting config options



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

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