Is it possible to have rdoc also show value of constant, not just it's comment? At the moment it's generating
Constants
DEFAULT_CONFIG_FILE
Default configuration file location
what I would like to get is
Constants
DEFAULT_CONFIG_FILE = '~/config.yaml'
Default configuration file location
given source code
DEFAULT_CONFIG_FILE = '~/config.yaml'
How can I achieve that?