为所有任务获取自定义参数?

发布于 2024-10-30 18:38:44 字数 180 浏览 0 评论 0原文

我想将一个参数传递给 rake ,而与我运行的任务无关。

例如:

rake my_arg=foo
rake my_arg=foo :install
rake my_arg=foo :upgrade
rake my_arg=foo :bar

有没有办法做到这一点?

I want to pass in an argument to rake independent of the task I run.

For example:

rake my_arg=foo
rake my_arg=foo :install
rake my_arg=foo :upgrade
rake my_arg=foo :bar

Is there a way to do this?

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

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

发布评论

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

评论(2

鹿港小镇 2024-11-06 18:38:44

您可以像这样发送参数:

rake some_task arg1=value arg2=value

然后从 rake 任务中的 ENV 中提取命名参数:

arg1 = ENV['arg1']
arg2 = ENV['arg2']

您还可以提供更传统的命令行开关,如下所示:

rake some_task -- --arg1=value --arg2=value

然后使用 OptionParser (或其他一些选项解析器)来解压 ARGV.如果您想使用开关,请不要忘记额外的 -- ,它会告诉 rake 停止将命令行解析为开关。

You can send arguments in like this:

rake some_task arg1=value arg2=value

Then pull the named parameters out of ENV inside your rake task:

arg1 = ENV['arg1']
arg2 = ENV['arg2']

You can also supply more traditional command line switches like this:

rake some_task -- --arg1=value --arg2=value

And then use OptionParser (or some other option parser) to unpack ARGV. Don't forget the extra -- if you want to use switches, that will tell rake to stop parsing the command line as switches.

叹沉浮 2024-11-06 18:38:44

这些参数被rake放入ENV[]中,模拟环境变量。因此,您可以只使用实际的环境变量。例如:

export my_arg=foo
rake install upgrade bar

由于您可以传递 rake 命令列表,因此即使它不是对原始问题的直接答案,您也可以执行此操作:

rake my_arg=foo install upgrade bar

These arguments are put into ENV[] by rake, simulating environment variables. As such, you can just use actual environment variables instead. For instance:

export my_arg=foo
rake install upgrade bar

Since you can pass a list of rake commands, you could also do this even though it isn't a direct answer to your original question:

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