In my gemspec file, I've added configuration for RDoc that doesn't seem to be seen by RDoc.
gem.rdoc_options = ['-m', 'README.md']
Given that I've specified the README.md file as the main file, I would expect that running rdoc
would respect that. It doesn't. Running rdoc -m README.md
does work, but then why even have it in the gemspec?