Resque 讨厌 kaminari dsl 方法 paginates_per

发布于 2024-11-30 16:06:29 字数 595 浏览 1 评论 0原文

因此,我正在将我的管理邮件程序转换为使用 Resque 并在后台执行。

当我运行:

rake resque:work QUEUE='*' --trace

我得到这个:

$ rake resque:work QUEUE='*' --trace (in /my/directory)
** Invoke resque:work (first_time)
** Invoke resque:preload (first_time)
** Execute resque:preload rake aborted! undefined method `paginates_per' for #<Class:0x000000045ba1b8>

它追溯到我的微帖子模型,使用 kaminari 的 dsl 方法 paginates_per 默认为每页 10 个微帖子:

class Micropost < ActiveRecord::Base
.
.
.
  paginates_per 10

如何在不移动 DSL 方法的情况下让 rake 停止呕吐?

So I'm converting my Admin mailers to use Resque and execute in the background.

When I ran:

rake resque:work QUEUE='*' --trace

I get this:

$ rake resque:work QUEUE='*' --trace (in /my/directory)
** Invoke resque:work (first_time)
** Invoke resque:preload (first_time)
** Execute resque:preload rake aborted! undefined method `paginates_per' for #<Class:0x000000045ba1b8>

which traces back to my Micropost model that default to 10 micropost per page using kaminari's dsl method paginates_per:

class Micropost < ActiveRecord::Base
.
.
.
  paginates_per 10

How do I get rake to stop puking without moving the DSL method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文