Skip to content

Instantly share code, notes, and snippets.

@onsails
Created April 13, 2010 00:47
Show Gist options
  • Save onsails/364186 to your computer and use it in GitHub Desktop.
Save onsails/364186 to your computer and use it in GitHub Desktop.
# lib/daemon.rb
class Daemon < DaemonSpawn::Base
def start args
while true
# ... функциональная часть
sleep 3600
end
end
def stop
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment