Open vanboom opened 12 years ago
+1, I'm seeing this as well after moving from 2.1.4 to 3.0.0. The exception is triggered when using the "delay" proxy, as in: article.delay.update_comments. I tried using the "send_later" form as per the documentation, but that triggers deprecation warnings.
+1 when gem update delayed_job 2.1.4 to 3.0.0
NameError (uninitialized constant Delayed::DelayProxy::Job):
+1 when gem update
2.0 and higher versions of DelayedJob don't come from this repository. Try here: https://github.com/collectiveidea/delayed_job
Request to have this source's description and/or readme to link to the new official source
+1 for linking to the new source
I submitted a patch to the readme for this: https://github.com/tobi/delayed_job/pull/50/
So for others who just want to fix this issue, the key is to simply replace gem 'delayed_job'
in your Gemfile with this:
gem 'delayed_job_active_record'
Or if you happen to be using Mongoid:
gem 'delayed_job_mongoid'
These will pull in the latest delayed_job with its dependencies, and everything should Just Work(tm).
@jpatokal thanks for the fix, worked like a charm :)
@jpatokal Worked for me, thanks!
Thanks @jpatokal . it worked
+1
Thanks @jpatokal
I'm getting this error when using the delayed_job 3.0.0 gem...
NameError (uninitialized constant Delayed::Job):
Everything works great when I force delayed_job, 2.1.4 in my Gemfile.
I'm using rails 3.1.1.
Thanks for a great gem!