Class: Vagrant::Rubymine::Config
- Inherits:
-
Object
- Object
- Vagrant::Rubymine::Config
- Defined in:
- lib/vagrant/rubymine/config.rb
Instance Attribute Summary collapse
-
#config_path ⇒ Object
Returns the value of attribute config_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.
6 7 8 |
# File 'lib/vagrant/rubymine/config.rb', line 6 def initialize @config_path = UNSET_VALUE end |
Instance Attribute Details
#config_path ⇒ Object
Returns the value of attribute config_path.
4 5 6 |
# File 'lib/vagrant/rubymine/config.rb', line 4 def config_path @config_path end |
Instance Method Details
#finalize! ⇒ Object
10 11 12 |
# File 'lib/vagrant/rubymine/config.rb', line 10 def finalize! @config_path = nil if @config_path == UNSET_VALUE end |