如何覆盖自定义数据库适配器的 rake 任务?

发布于 2024-11-10 21:09:02 字数 273 浏览 0 评论 0原文

我编写了一个自定义数据库适配器,它在 Rails 服务器运行时可以正确有效地工作。我现在想添加用于创建、删除和迁移数据库的常用 rake 任务定义。

我想实现:

db:[drop|create|migrate]

如何将这些定义与我的 gem 打包在一起,以便它们覆盖任何使用 gem 的人的默认定义?

我查看了其他适配器的源代码,但所有 rake 任务逻辑似乎都融入了 active_record 本身,每个任务只是切换适配器名称。

I've written a custom database adapter that works correctly and effectively when a rails server is running. I would now like to add the usual rake task definitions for creating, dropping and migrating the database.

I would like to implement:

db:[drop|create|migrate]

How do I package these definitions with my gem so that they override the default ones for anyone who uses the gem?

I looked through the source of other adapters but all the rake task logic appears to be baked into active_record itself, each task just switches on the adapter name.

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

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

发布评论

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

评论(2

孤君无依 2024-11-17 21:09:02

这是可能的:

# somewhere in your gem's tasks
Rake::Task['db:create'].clear

# then re-define
namespace 'db' do
  task 'create' do
    # ...
  end
end

Take::Task#[] 无法解决任务时 它将失败
如果您的任务有时存在,您可能需要:

task_exists = Rake.application.tasks.any? { |t| t.name == 'db:create' }
Rake::Task['db:create'].clear if task_exists

如果您想将任务添加到现有的 rake 任务中,请使用enhance。

Rake::Task['db:create'].enhance do
  Rake::Task['db:after_create'].invoke
end

This is possible with:

# somewhere in your gem's tasks
Rake::Task['db:create'].clear

# then re-define
namespace 'db' do
  task 'create' do
    # ...
  end
end

When Take::Task#[] can't resolve a task it will fail.
If your tasks sometimes exists, you might want to:

task_exists = Rake.application.tasks.any? { |t| t.name == 'db:create' }
Rake::Task['db:create'].clear if task_exists

If you want to add tasks to an existing rake task, use enhance.

Rake::Task['db:create'].enhance do
  Rake::Task['db:after_create'].invoke
end
终难愈 2024-11-17 21:09:02

您可以

Rake::Task['db:create'].clear

在重新定义之前写入删除原始任务。
另请查看覆盖rails的默认rake任务

You can write

Rake::Task['db:create'].clear

to delete the original task before redefining it.
Also check out Overriding rails' default rake tasks

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