如何对 Bundler 中管理的 gem 进行猴子修补?

发布于 2024-12-07 13:45:39 字数 160 浏览 0 评论 0原文

具体来说,我想用以下命令将delayed_job指向另一个表:

set_table_name“my_table”

我刚刚从供应商gems切换到Bundler。我曾经只是更改供应商 gem 中的代码,这可能很愚蠢。无论如何,我可能需要为此做一条猴子路径,我只是不确定如何做。

Specifically, I want to point delayed_job at a different table with:

set_table_name "my_table"

I just switched to Bundler from vendoring gems. I used to just change the code in the vendored gem, which was probably stupid. I probably need to do a monkey path for this anyway, I'm just no sure how.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

来日方长 2024-12-14 13:45:39

以下是您可以使用的一般模式。它不会按原样工作,因为重点只是演示模式,并且因为我不知道 Delayed::Job 的类结构。

# config/initializers/delayed_job_patch.rb

require "delayed_job"

class Delayed::Job

  set_table_name "my_table"

end

The following is the general pattern you can use. It's not going to work as-is, because the point is only to demonstrate the pattern, and because I don't know Delayed::Job's class structure.

# config/initializers/delayed_job_patch.rb

require "delayed_job"

class Delayed::Job

  set_table_name "my_table"

end
人事已非 2024-12-14 13:45:39

我要做的就是在 github 上分叉该项目,然后为表名实现一个配置选项,然后将拉取请求发送回原作者。与此同时,我会将捆绑器指向我自己的 git(或公司拥有的)存储库。

What I would do, is fork the project on github, and then implement a config option for the table name, and then send a pull request back to the original author. In the meantime, I would point bundler at my own git (or company owned) repo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文