class RunShell::Configuration

Public Instance Methods

shell_command() click to toggle source
# File lib/run_shell/configuration.rb, line 11
def shell_command
  @shell_command ||= ""
end
shell_command=(value) click to toggle source
# File lib/run_shell/configuration.rb, line 15
def shell_command=(value)
  @shell_command = value
end
shell_path() click to toggle source
# File lib/run_shell/configuration.rb, line 3
def shell_path
  @shell_path ||= ""
end
shell_path=(value) click to toggle source
# File lib/run_shell/configuration.rb, line 7
def shell_path=(value)
  @shell_path = value
end