Class: VagrantPoderosa::Config

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



10
11
12
# File 'lib/vagrant-poderosa/config.rb', line 10

def initialize
  @exe_path = UNSET_VALUE
end

Instance Attribute Details

#exe_pathString

Program file absolute path or command name if found in PATH. If value is undefined, search

poderosa.exe

Returns:

  • (String)


8
9
10
# File 'lib/vagrant-poderosa/config.rb', line 8

def exe_path
  @exe_path
end

Instance Method Details

#finalize!Object



14
15
16
# File 'lib/vagrant-poderosa/config.rb', line 14

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