Class: VagrantPoderosa::Config
- Inherits:
-
Object
- Object
- VagrantPoderosa::Config
- Defined in:
- lib/vagrant-poderosa/config.rb
Instance Attribute Summary collapse
-
#exe_path ⇒ String
Program file absolute path or command name if found in PATH.
Instance Method Summary collapse
- #finalize! ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
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_path ⇒ String
Program file absolute path or command name if found in PATH. If value is undefined, search
poderosa.exe
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 |