Hi Zeke - you could load your entire Rails environment into the daemon
script like this:
require File.dirname(__FILE__) + '/../config/environment.rb'
Or you could just load the individual classes one by one. The former
way is simpler, and will ensure that your daemon process has access to
your entire environment. The latter way is a little more work, but
only includes what you need to include.
Let us know if one of those approaches does what you need!
Cheers,
Jon
On Jan 24, 4:03 pm, "
zekeonf...@gmail.com" <
zekeonf...@gmail.com>
wrote: