I'm running "yard server -g" but it's only generating the Table of Contents for axlsx.
When I click on a class I get:
undefined method `new' for nil:NilClass.
Any idea why? (Fwiw, other gems are working fine in Yard server)
I was having the same problem, then noticed in console: "[error]: Missing 'kramdown' gem for Markdown formatting. Install it with gem install kramdown
"
I installed kramdown, and lo and behold! It worked.
Apologies, the last release has a .yardoc folder with incomplete documentation.
Here is a workaround you can use until I release an updated version of the gem.
gem which axlsx
rm -rf .yardoc
yard server -g
Again, sincerest apologies for the pain.
best
randym