Ruby daemons and JRuby - alternative options
问题 I have an app that I am migrating from Ruby to JRuby (due to need for better Web Service Security support via Java). One of the gems I use is daemons to create a background job. The issue is that it use fork+exec to create the background process, but thats a no-no with JRuby. So - is there an alternative gem/wrapper for creating background jobs? My current thoughts are to just call rake from a shell script and let the rake task run forever... Thanks in advance, Chris. UPDATE We are currently