怎么做?或者如果有的话我在哪里可以下载?
使用
rdoc -o ~/doc --inline-source --line-numbers --format=html --template=hanna
给我缺少方法的文档。似乎它不会生成用 C 编写的方法。
怎么做?或者如果有的话我在哪里可以下载?
使用
rdoc -o ~/doc --inline-source --line-numbers --format=html --template=hanna
给我缺少方法的文档。似乎它不会生成用 C 编写的方法。
在您的 ruby 源目录中,运行
汉娜 -o --inline-source --line-numbers --format=html
宝石安装米斯拉夫汉娜
然后只需按照自述文件中的步骤操作:
http://github.com/mislav/hanna/blob/8eaeb062fae276b19eb86fa302e9ee446a06eef8/README.markdown
如果您使用的是 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
原来你只需要获取Ruby 源代码,解压它,然后在源目录中,运行如下代码:
rdoc -o <output path> --inline-source --line-numbers --format=html --template=hanna