Class: RunShell::Configuration
- Inherits:
-
Object
- Object
- RunShell::Configuration
- Defined in:
- lib/run_shell/configuration.rb
Instance Method Summary collapse
- #shell_command ⇒ Object
- #shell_command=(value) ⇒ Object
- #shell_path ⇒ Object
- #shell_path=(value) ⇒ Object
Instance Method Details
#shell_command ⇒ Object
11 12 13 |
# File 'lib/run_shell/configuration.rb', line 11 def shell_command @shell_command ||= "" end |
#shell_command=(value) ⇒ Object
15 16 17 |
# File 'lib/run_shell/configuration.rb', line 15 def shell_command=(value) @shell_command = value end |
#shell_path ⇒ Object
3 4 5 |
# File 'lib/run_shell/configuration.rb', line 3 def shell_path @shell_path ||= "" end |
#shell_path=(value) ⇒ Object
7 8 9 |
# File 'lib/run_shell/configuration.rb', line 7 def shell_path=(value) @shell_path = value end |