9

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.

Joshua Muheim
  • 12,617
  • 9
  • 76
  • 152

2 Answers2

12
yardoc --output-dir /path/to/yard/doc app.rb
Kashyap
  • 4,696
  • 24
  • 26
0

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
starfry
  • 9,273
  • 7
  • 66
  • 96