是否有可能让rdoc也显示常量值,而不仅仅是它的注释?目前它正在产生
Constants
DEFAULT_CONFIG_FILE
Default configuration file location
我想得到的是
Constants
DEFAULT_CONFIG_FILE = '~/config.yaml'
Default configuration file location
给出源代码
DEFAULT_CONFIG_FILE = '~/config.yaml'
我怎样才能做到这一点?
答案 0 :(得分:1)
Here is the offending line in the template仅显示名称。您必须添加对const.value
的引用。
也许很简单:
<dt id="<%= const.name %>"><%= const.name %> = <%= const.value %>