Class: VagrantShellCommander::Config
- Inherits:
-
Object
- Object
- VagrantShellCommander::Config
- Defined in:
- lib/vagrant-shell-commander/config.rb
Overview
Configuration options
Instance Attribute Summary collapse
-
#after_share_folders ⇒ Object
Returns the value of attribute after_share_folders.
Instance Method Summary collapse
-
#finalize! ⇒ Object
finalize! override, unseting config options.
-
#initialize ⇒ Config
constructor
Initialize override, setting config options default values for merging.
Constructor Details
#initialize ⇒ Config
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_folders ⇒ Object
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 |