I love the idea of this gem.
In my config/initializers/zhong.rb I did:
Zhong.schedule do
every 5.seconds, 'MyJob' do
MyJob.perform_later
end
end
However when I run zhong I get MyJob failed: uninitialized constant MyJob . MyJob is located in app/jobs/...
I can do hacky things to load but has anyone tried this and hopefully come up w a better solution? What would be the best way to autoload Rails classes?
I love the idea of this gem.
In my config/initializers/zhong.rb I did:
However when I run zhong I get
MyJob failed: uninitialized constant MyJob.MyJobis located inapp/jobs/...I can do hacky things to load but has anyone tried this and hopefully come up w a better solution? What would be the best way to autoload Rails classes?