如何在rdoc中显示常量值?

时间:2018-02-03 23:28:44

标签: ruby rdoc

是否有可能让rdoc也显示常量值,而不仅仅是它的注释?目前它正在产生

Constants

DEFAULT_CONFIG_FILE

    Default configuration file location

我想得到的是

Constants

DEFAULT_CONFIG_FILE = '~/config.yaml'

    Default configuration file location

给出源代码

DEFAULT_CONFIG_FILE = '~/config.yaml'

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

您必须create a custom template

Here is the offending line in the template仅显示名称。您必须添加对const.value的引用。

也许很简单:

<dt id="<%= const.name %>"><%= const.name %> = <%= const.value %>