Tx John
was expecting a Rails "application" to run in a way but indeed it is just an http server running as wa daemon.
So
namespace :ruote do
desc "Run a worker thread for ruote"
task :run_worker => :environment do
Process.daemon
RuoteKit.run_worker(RUOTE_STORAGE)
end
end
works well apparently, could had some signal traps but not sure how the Worker would react in any case as it does not seems to handle signals.
Did not specify to stay in the current directory, but no worries apparently.
Could have run the rake task with "nohup &" too, hard way I find.
Cheers
Christophe