You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
504 B

  1. Daemons provides an easy way to wrap existing ruby scripts (for
  2. example a self-written server) to be run as a daemon and to be
  3. controlled by simple start/stop/restart commands. You can also call
  4. blocks as daemons and control them from the parent or just daemonize
  5. the current process. Besides this basic functionality, daemons offers
  6. many advanced features like exception backtracing and logging (in case
  7. your ruby script crashes) and monitoring and automatic restarting of
  8. your processes if they crash.