自动化 rake 文档:app
对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到 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.
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.