class Object

Constants

Alphabet
DockerBinaryLocation
EXPUNGE_ENV_KEYS

Public Instance Methods

cmd(*args) click to toggle source
# File share/scripts/exposed-ports, line 5
def cmd(*args)
  io = IO.popen(args, err: [:child, :out])
  io.read.split("\n")
end
docker(*args) click to toggle source
# File share/scripts/exposed-ports, line 10
def docker(*args)
  cmd(DockerBinaryLocation, *args).first
end