如何从控制台运行 rake 任务?
我想从控制台调用我的 rake 任务。可行吗?如果是,该怎么做?
我在控制台上尝试了这个:
require 'rake'
Rake::Task['my_task'].invoke
但它给了我这个错误:
RuntimeError: Don't know how to build task
就像耙子找不到任务一样。
任何帮助将不胜感激。
谢谢
编辑:我正在使用rails 2.3.5
I want to invoke my rake task from console. Is it doable? if yes, how to do so?
I tried this on console:
require 'rake'
Rake::Task['my_task'].invoke
but it give me this error:
RuntimeError: Don't know how to build task
it's like the rake cannot found the task.
any help would be appreciated.
Thank you
Edit: I am using rails 2.3.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
运行 Rake 任务需要两个步骤:
您缺少第二步。
通常这是在 Rakefile 中完成的,但您必须在这里手动完成:
Running your Rake tasks requires two steps:
You are missing the second step.
Normally this is done in the Rakefile, but you have to do it manually here:
最简单的方法是从 irb 运行 %x[命令]。我不确定你是否想实现什么目标。
编辑:我强烈建议使用
.invoke
,正如丹尼尔在接受的答案中所说。The easiest way to do it is to run %x[command] from the irb. I'm not sure if what you want to achieve though.
EDIT: I highly recommend to use
.invoke
as Daniel says in the accepted answer.简单的方法是:
The easy way is:
我正在使用
rails 5.xx
,并且需要执行相同的表单rails console
。我在这里创建了 rake 任务 -
这是对我有用的命令
- Load
Rails.application.load_tasks
对我有用!
I am using
rails 5.x.x
, and was in the need the do the same formrails console
.I have create rake task here-
Here is the command worked for me-
Load
Rails.application.load_tasks
Worked for me!
请注意,如果您通过
rails c
进入 Rails 控制台,您只需通过irb(main):001:0> 调用/运行 rake 任务方法即可。 TaskClassName.new.my_task
Just a note that if you are in the rails console via
rails c
you can just call/run the rake task method byirb(main):001:0> TaskClassName.new.my_task
如果您不使用Rails:
此外,
Rake::Task.tasks
返回所有已加载任务的列表。Rake::Application::DEFAULT_RAKEFILES
保存默认的查找文件名。PS 我知道作者要求 Rails 解决方案,但我找不到更好的地方来放置它。
If you do not use Rails:
Also,
Rake::Task.tasks
returns the list of all loaded tasks.Rake::Application::DEFAULT_RAKEFILES
holds the default lookup file names.P.S. I am aware that the author asked for Rails solution, but I couldn't find any better place where to put this.