Skip to content

Instantly share code, notes, and snippets.

@h0lyalg0rithm
Created March 26, 2015 19:37
Show Gist options
  • Save h0lyalg0rithm/778c707a40d4881c3727 to your computer and use it in GitHub Desktop.
Save h0lyalg0rithm/778c707a40d4881c3727 to your computer and use it in GitHub Desktop.
def do_job
return if @cleaning
puts "Starting cleanup"
@cleaning = true
sleep(10) # simulate killing of sinatra app
puts "Completed"
exit
end
while true
trap('INT') { do_job }
trap('QUIT') { do_job }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment