Sha256: fa2fe830b10dc6c23de4c65bae510c711a5d0586b6526c1e4e3f50a5160d6354

Contents?: true

Size: 199 Bytes

Versions: 1

Compression:

Stored size: 199 Bytes

Contents

module Semaphore
  def self.execute(command)
    log("Running command: #{command}")
    system(command)
    log("Command finished, exit status : #{$?.exitstatus}")

    exit($?.exitstatus)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
semaphore_test_boosters-0.3.0 lib/test_boosters/executor.rb