Sha256: fce8a1e32e088cdea37fcc2d57333d8ceb78698f39bf1ff994d5c34c3ef67293

Contents?: true

Size: 221 Bytes

Versions: 29

Compression:

Stored size: 221 Bytes

Contents

#!/usr/bin/env ruby

trap('INT') do
  puts "Recieved SIGINT, aborting."
  exit 1
end

trap('TERM') do
  puts "Recieved SIGTERM, aborting."
  exit 1
end

puts "Sleeping for 10 seconds"
sleep 10
puts "I wasn't killed? WTF"

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
shipit-engine-0.17.0 test/fixtures/timeout
shipit-engine-0.16.0 test/fixtures/timeout
shipit-engine-0.15.0 test/fixtures/timeout
shipit-engine-0.14.0 test/fixtures/timeout
shipit-engine-0.13.0 test/fixtures/timeout
shipit-engine-0.12.1 test/fixtures/timeout
shipit-engine-0.12.0 test/fixtures/timeout
shipit-engine-0.11.0 test/fixtures/timeout
shipit-engine-0.10.0 test/fixtures/timeout