Class: ConfigEnv::Command
- Inherits:
-
Object
- Object
- ConfigEnv::Command
- Defined in:
- lib/config_env.rb
Instance Attribute Summary collapse
-
#vars ⇒ Object
Returns the value of attribute vars.
Instance Method Summary collapse
Instance Attribute Details
#vars ⇒ Object
Returns the value of attribute vars.
69 70 71 |
# File 'lib/config_env.rb', line 69 def vars @vars end |
Instance Method Details
#set(key, value) ⇒ Object
64 65 66 67 |
# File 'lib/config_env.rb', line 64 def set(key, value) @vars ||= {} @vars[key] = value.to_s end |