为 Rails 应用程序创建 Rdoc
我想为我的 Rails (2.3.8) 项目生成文档。当我尝试时,
rake doc:rails
rake doc:rerails
它为所有类创建文档,包括标准 ruby 类和供应商目录中的所有 ruby 文件(插件等)。
我如何仅为 ruby 类创建 rdoc 文档,以下目录
- 应用程序文件夹中的文件(所有模型,控制器和视图)
- config 文件夹
- lib 文件夹
I would like to generate a documentation to my rails (2.3.8) project. When I tried
rake doc:rails
rake doc:rerails
It creates documentation for all the classes including standard ruby classes and all the ruby files in vendor directory (plugins etc..)
How can I create rdoc documentation only for ruby classes, files in following directories
- app folder (all the models, controllers and views)
- config folder
- lib folder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将其添加到我的 Rakefile 中;
然后运行;
查看 RDoc::Task 文档以获取更多信息 http://rdoc.rubyforge.org/RDoc/Task.html
诚然,我使用的是 Rails 3 应用程序,但我认为这效果是一样的。
I added this to my Rakefile;
Then run;
Check out the RDoc::Task docs for more http://rdoc.rubyforge.org/RDoc/Task.html
Admittedly I am on a rails 3 app, but I think this works the same.
您可以使用
rake doc:app
为应用程序生成文档。引用 Rails 指南 的第 2.4 节:
You can use
rake doc:app
to generate documentation for the app.Quoting from section 2.4 of Rails guides: