Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法告诉 Yard 不要弄乱我的 Rails 项目doc/文件夹?我希望它保存它的文件doc/yard/或类似的东西。可悲的是,我没有找到任何选择。
doc/
doc/yard/
谢谢你的帮助。
yardoc --output-dir /path/to/yard/doc app.rb
您可能想要配置它并忘记它。如果是这样,.yardopts在您的项目根目录中是要走的路 - 您只需在文件中写入选项,每行一个,如下所示:
.yardopts
$ echo --output-dir /path/to/yard/doc >> .yardopts
(或使用vi或手动编辑文件)
vi
有了它,你就可以做到
$ yard doc