Is there any way to tell Yard not to clutter up my Rails project's doc/ folder? I'd like it to save its files in doc/yard/ or something like that. Sadly I didn't find any option for that.

Thank you for help.

有帮助吗?

解决方案

yardoc --output-dir /path/to/yard/doc app.rb

其他提示

You probably want to conifgure this and forget about it. If so, .yardopts in your project root directory is the way to go - you just write the option in the file, one per line, so something like:

$ echo --output-dir /path/to/yard/doc >> .yardopts

(or use vi or whatever to edit the file by hand)

With that in place you can just do

$ yard doc
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top