Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
build_method_summary_list(path_prefix = "")
public
Build a summary list of all the methods in this context
# File lib/rdoc/generator.rb, line 212
def build_method_summary_list(path_prefix = "")
collect_methods unless @methods
@methods.sort.map do |meth|
{
"name" => CGI.escapeHTML(meth.name),
"aref" => "##{meth.aref}"
}
end
end