自动化 rake 文档:app

发布于 2024-08-14 21:24:29 字数 316 浏览 1 评论 0原文

对于 Rails 程序员来说,保持 RDoc 文件最新的最简单方法是什么?

我知道我可以手动运行 rake doc:app ,但我真的不想在签入过程中添加手动步骤,因为我们已经在使用 cruisecontrolrb 来处理部署和测试自动化,似乎应该有一种简单的方法可以在签入时重新生成这些文件。

有人已经自动化 rake doc:app 了吗?如果是这样,您有什么建议?

For you rails programmers, what's the easiest way to keep your RDoc files up-to-date?

I know I can run rake doc:app manually, but I really don't feel like adding a manual step to the check-in process, and since we're already using cruisecontrolrb to handle deployment and testing automation, it seems like there should be an easy way to regenerate these files on check-in.

Is anyone already automating rake doc:app? And, if so, what are your suggestions?

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

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

发布评论

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

评论(2

唱一曲作罢 2024-08-21 21:24:29

将其添加到 crontab 怎么样?如果你不喜欢这种语法,你可以尝试使用 whenever gem,它Ryan Bates 制作了精彩的 Railscasts 剧集

How about adding it to crontabs? If you don't like the syntax, you could try using the whenever gem, which Ryan Bates' has made an excellent Railscasts episode on.

時窥 2024-08-21 21:24:29

Guard 是一个很好的通用系统,用于监视 Rails 项目中的更改。添加guard-rake gem,你可以让它触发rake doc:app每当文件更改时执行任务。

Guard is a nice, general purpose system that watches for changes in a Rails project. Add in the guard-rake gem and you can have it trigger the rake doc:app task whenever files change.

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