class ChefCLI::ShellOut

CookbookOmnifetch
A subclass of Mixlib::ShellOut that conforms to the API expected by

def self.shell_out(*command_args)

def self.shell_out(*command_args)
  cmd = new(*command_args)
  cmd.run_command
  cmd
end

def success?

def success?
  !error?
end