Skip to content

Instantly share code, notes, and snippets.

@maraca
Last active August 29, 2015 14:19
Show Gist options
  • Save maraca/a99cdf2e93edf03472e2 to your computer and use it in GitHub Desktop.
Save maraca/a99cdf2e93edf03472e2 to your computer and use it in GitHub Desktop.
trap('INT') { puts 'Au revoir.'; exit 0 }
require 'someslowassgem'
def main
# do stuff like
loop {}
end
begin
main
rescue Interrupt => error
puts "Caught ctrl+c."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment