This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
build_alias_summary_list(section)
public
Build a list of aliases for which we couldn’t find a corresponding method
# File lib/rdoc/generator.rb, line 227
def build_alias_summary_list(section)
@context.aliases.map do |al|
next unless al.section == section
res = {
'old_name' => al.old_name,
'new_name' => al.new_name,
}
if al.comment and not al.comment.empty? then
res['desc'] = markup al.comment, true
end
res
end.compact
end