Skip to content

Instantly share code, notes, and snippets.

@myobie
Created November 5, 2008 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myobie/22414 to your computer and use it in GitHub Desktop.
Save myobie/22414 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'daemons'
puts 'I am not a daemon yet.'
# Become a daemon
Daemons.daemonize
loop do
puts 'Woo hoo!'
sleep(5)
end
# This will just fork off a process
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment