From: Kirk Haines Date: 2010-06-08T08:23:22+09:00 Subject: Re: keep eventmachine app running On Mon, Jun 7, 2010 at 5:01 PM, Vect Vect wrote: > What are some projects that do this and do they work with eventmachine If you are writing the software, it's simple. You should do a little background research, IMHO, so that you understand what daemonizing is. http://www.google.com/search?q=how+to+daemonize+a+process Once you understand that, you can pretty easily write a little Ruby code to do a passable job yourself. There's not much to it. Or, you can use someone else's project to do it: gem search -r daemon Take a look at some of those. Here's one that has been around for a while: http://daemons.rubyforge.org/ Good luck! Kirk Haines