Class: VagrantSubutai::Config
- Inherits:
-
Object
- Object
- VagrantSubutai::Config
- Defined in:
- lib/vagrant-subutai/config.rb
Instance Attribute Summary collapse
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
- #finalize! ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
7 8 9 10 |
# File 'lib/vagrant-subutai/config.rb', line 7 def initialize super @url = UNSET_VALUE end |
Instance Attribute Details
#url ⇒ Object
Returns the value of attribute url.
5 6 7 |
# File 'lib/vagrant-subutai/config.rb', line 5 def url @url end |
Instance Method Details
#finalize! ⇒ Object
12 13 14 |
# File 'lib/vagrant-subutai/config.rb', line 12 def finalize! @url = '' if @url == UNSET_VALUE end |