class Spud::Shell::Command::Commander

Public Class Methods

new(driver) click to toggle source
# File lib/spud/shell/command.rb, line 64
def initialize(driver)
  @driver = driver
end

Public Instance Methods

call(command, silent: false, handle: STDOUT) click to toggle source
# File lib/spud/shell/command.rb, line 69
def call(command, silent: false, handle: STDOUT)
  Command.(command, driver: @driver, silent: silent, handle: handle)
end