Skip to content

Instantly share code, notes, and snippets.

@jmettraux
Created February 13, 2014 21:35
Show Gist options
  • Save jmettraux/a4c00374f58e9f7affa8 to your computer and use it in GitHub Desktop.
Save jmettraux/a4c00374f58e9f7affa8 to your computer and use it in GitHub Desktop.
p "#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL}"
p $$
require 'rufus-scheduler'
s = Rufus::Scheduler.new
trap('TERM') do
s.shutdown(:kill)
p :bye
exit
end
s.every '10s' do
p :hello
end
#s.join
sleep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment