module SystemCall

A simple wrapper around Ruby's Open3 to call CLI programs and process their output.

Constants

VERSION

Public Class Methods

call(*args) click to toggle source

Initializes and calls a {Command}, then returns the {Result}.

@param args [Array] The command line arguments. @return [Result]

# File lib/system_call.rb, line 17
def self.call(*args)
  Command.call(*args)
end

Public Instance Methods

system_call(*args) click to toggle source

Initializes and calls a {Command}, then returns the {Result}.

@param args [Array] The command line arguments. @return [Result]

# File lib/system_call.rb, line 26
def system_call(*args)
  Command.call(*args)
end