This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
build_constants_summary_list(section)
public
Build a list of constants
# File lib/rdoc/generator.rb, line 247
def build_constants_summary_list(section)
@context.constants.map do |co|
next unless co.section == section
res = {
'name' => co.name,
'value' => CGI.escapeHTML(co.value)
}
if co.comment and not co.comment.empty? then
res['desc'] = markup co.comment, true
end
res
end.compact
end