4

我想用Hanna模板生成Ruby 文档。

怎么做?或者如果有的话我在哪里可以下载?

使用

rdoc -o ~/doc --inline-source --line-numbers --format=html --template=hanna

给我缺少方法的文档。似乎它不会生成用 C 编写的方法。

4

4 回答 4

1

在您的 ruby​​ 源目录中,运行

汉娜 -o --inline-source --line-numbers --format=html

于 2009-09-28T09:28:54.870 回答
0

宝石安装米斯拉夫汉娜

然后只需按照自述文件中的步骤操作:

http://github.com/mislav/hanna/blob/8eaeb062fae276b19eb86fa302e9ee446a06eef8/README.markdown

于 2009-04-08T00:00:06.897 回答
0

如果您使用的是 rvm,则此方法有效:

$ gem install hanna
$ cd ~/.rvm/src/ruby-1.8.6-p383
$ hanna -o doc/api --inline-source --line-numbers --fmt=html
$ open doc/api/index.html
于 2010-04-22T00:17:02.237 回答
-1

原来你只需要获取Ruby 源代码,解压它,然后在源目录中,运行如下代码:

rdoc -o <output path> --inline-source --line-numbers --format=html --template=hanna
于 2009-04-20T02:57:11.570 回答