Skip to content

Instantly share code, notes, and snippets.

@asutoshpalai
Last active May 13, 2016 12:10
Show Gist options
  • Save asutoshpalai/77158f5318f89a14fac652fa96cb3723 to your computer and use it in GitHub Desktop.
Save asutoshpalai/77158f5318f89a14fac652fa96cb3723 to your computer and use it in GitHub Desktop.
Example to reproduce rubygems/bundler#4568 issue
#!/usr/bin/env ruby
# forzen_string_literal: true
def run
thread = Thread.new do
puts "Running..."
nil while true
end
begin
thread.run.join
rescue Interrupt
end
end
puts "Starting..."
run
puts "Shutting down gracefully"
# Gracefull shutdown code here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment