Actions
Feature #3023
closedRDoc urls
Feature #3023:
RDoc urls
Description
=begin
Currently, rdoc generates url for methods that look like:
.../classes/Enumerable.html#M002713
This has two drawbacks.
-
This URL is subject to change when methods are added/removed. This makes it impossible to reference the documentation of a method.
-
There is no way to know what method this refers to just by looking at it.
If instead the url looked like:
.../classes/Enumerable.html#map-instance_method
then it would be human readable and RESTful.
The method name simply need to be URI encoded and suffixed with either instance_method, class_method, or -constant.
=end
Files
Actions