rakefile 可以用来做什么?
我了解 rake 命令的实用性,但 Rakefile 中通常定义哪些类型的自定义操作?我是新手,正在尝试找出何时适合使用此功能。我已经了解了很多关于如何使用它的信息,但关于“最佳实践”的了解不多。
I understand the utility of the rake
command, but what kinds of custom actions are typically defined in the Rakefile? I'm new and trying to figure out when it's appropriate to use this feature. I've found out plenty about how to use it, but not much about "best practices".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
既然您需要最佳实践,请查看这本书:Ruby 最佳实践。第 234-237 页讨论了 Rake 文件。
换句话说,它增强了项目中任务的可发现性,以便不熟悉它的用户可以快速开始做有用的事情。
一个好的做法是为 Rake 任务添加 desc() 字符串,以便 rake --tasks 提供有意义的输出。
我个人使用过的一些 Rake 应用程序:
其他示例包括自动将代码/文档更新发布到 Rubyforge 等。基本上,几乎任何可以在命令行完成的事情都可以在 Rake 中完成,并且您可以在 Rake 中完成。想象力是极限。
Since you're asking for best practices, check out this book: Ruby Best Practices. Pages 234-237 talks about Rake files.
To paraphrase, it enhances the discoverability of tasks in your project so that users unfamiliar with it can start doing useful things quickly.
A good practice is to add desc() strings for your Rake tasks so that
rake -- tasks
provides meaningful output.Some applications for Rake that I've used personally:
Other examples include publishing code/documentation updates to Rubyforge automatically, etc. Basically, virtually anything that can be done at a command line can be done in Rake and your imagination's the limit.
回答乍得答案中的后续问题:
您可以使用 rake 作为定义命令行选项的方法。
我经常这样使用它:
如果我执行脚本,我的默认任务就会运行。但我也可以通过命令行上的 rake 启动它。
Answering to your followup-question in Chads answer:
You could use rake as a method to define command line options.
I often use it like this:
If I execute the script, my default task is running. But I may also start it via rake on command line.
Rake 可用于任何类型的批处理命令,大多数人使用诸如设置、安装、运行、清理或其他应用程序相关操作之类的命令。
Rake could be used for any kind of batch command, most people use things like setting up, installing, running, cleaning, or other application related actions.