module Shellfold

Constants

VERSION

Public Class Methods

run(*args, **kwargs) click to toggle source
# File lib/shellfold.rb, line 107
def run(*args, **kwargs)
  Command.new(*args, **kwargs).run
end
run!(*args, **kwargs) click to toggle source
# File lib/shellfold.rb, line 111
def run!(*args, **kwargs)
  Command.new(*args, log_failure: true, **kwargs).run
end