rdoc
rdoc copied to clipboard
RDoc produces HTML and online documentation for Ruby projects.
When working on [cartage 2.0](https://github.com/KineticCafe/cartage), I found a case where the improper placement of the `:stopdoc:` directive can prevent the indexing of a class documented in another file. I have...
Recently have been looking into Azure Pipelines for Ruby trunk CI. The VM images are set up with all the 'image code' on drive C:, and the repo is placed...
The third bug found by fuzzing rdoc markdown, similar to https://github.com/ruby/rdoc/issues/654. ## Raw crash ``` /shared/rdoc/lib/rdoc/markdown.rb:802:in `block in parse': undefined method `parts' for nil:NilClass (NoMethodError) from /shared/rdoc/lib/rdoc/markdown.rb:797:in `each' from /shared/rdoc/lib/rdoc/markdown.rb:797:in...
This bug is similar to https://github.com/ruby/rdoc/issues/654, but the context is different and the bug itself is in another method. ## Raw crash ``` /shared/rdoc/lib/rdoc/markdown.rb:15451:in `_InlineNote': undefined method `length' for nil:NilClass...
Hi, I've been testing rdoc with a Ruby fuzzing tool ([kisaten](https://github.com/zelivans/kisaten)) and found a few bugs. So far I only caught bugs in `markdown.rb`, this is the first one. I...
It seems that RDoc is not currently designed to allow a custom formatter when running `gem rdoc`. Even when using `.gemrc` and setting the `--format` option to a custom formatter...
The latest version of rdoc is 6.0.4 , but the history hasn't update synchronously. maybe I have got the wrong doc for change log? Is there any another way that...
The rake clean and clobber tasks expect clean/clobber file list to be set via `CLEAN.include` and `CLOBBER.include`. From rake clean's docs: > [:clean] Clean up the project by deleting scratch...
Hi there, RDoc’s C parser fails to parse the following C file (it is part of a library I’m currently working on): ``` C #include "database.h" /*************************************** * Variables ***************************************/...
There is [an hard tab(s) to spaces implementation](https://github.com/ruby/rdoc/search?utf8=%E2%9C%93&q=%22%40options.tab_width%22+%22content.split%22&type=) in similar to [`RDoc::Text#expand_tabs`](https://github.com/ruby/rdoc/search?utf8=%E2%9C%93&q=%22def+expand_tabs%22&type=). I think it should be collected up, but [@drbrain said](https://github.com/ruby/rdoc/pull/512/files/1946c08402d27a7167451f78d34511946570b14f#r137398493), > Too bad [expand_tab](https://github.com/ruby/rdoc/blob/4b2fab86d907f5f0115e50d322238d431172404e/lib/rdoc/text.rb#L68) doesn't support `@options.tab_width` And...