I have a daemon that i made using the daemons gem
I run it and it just closes without error, but the script doesn't seem to be actually running. I'm running a rake task from it, will daemons run the commands inside from the directory it was called from?
This is the script
require 'rubygems'
require 'daemons'
Daemons.run('rake mytask')
the rake task has a loop which should stop it from exiting.