1

Is it possible to replace RDoc with YARD in Rails 4.2? I'd like rake doc:app to invoke YARD rather than RDoc.

In my Gemfile I replaced sdoc with YARD (gem 'yard', '~> 0.8.0', group: :doc) with no luck.

anthonator
  • 4,915
  • 7
  • 36
  • 50

1 Answers1

0

As described in the official Github Project for YARD, you can do that by running yard server which spawns a new server in http://localhost:8808/ for your documentation.

Romanos
  • 149
  • 10