6 lines
125 B
Ruby
6 lines
125 B
Ruby
require 'securerandom'
|
|
|
|
on_thread_shutdown do
|
|
File.write("./cookie_thread_shutdown.#{SecureRandom.hex}", "shutdown")
|
|
end
|