Class: Aldagai::InteractiveVariableManager
- Inherits:
-
VariableManager
- Object
- VariableManager
- Aldagai::InteractiveVariableManager
- Defined in:
- lib/aldagai/variable_managers/interactive.rb
Constant Summary
Constants inherited from VariableManager
VariableManager::DEFAULT_ENVIRONMENTS
Instance Method Summary collapse
Methods inherited from VariableManager
#clear, #delete, #initialize, #list, #set, #set_temp, #show
Constructor Details
This class inherits a constructor from Aldagai::VariableManager
Instance Method Details
#add(name, _variables) ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/aldagai/variable_managers/interactive.rb', line 6 def add(name, _variables) if ENV['EDITOR'].nil? raise Aldagai::EditorNotPresentException.new end super(name, process_variables) end |