This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
display_method_list(methods)
public
Display the list of methods.
# File lib/rdoc/ri/display.rb, line 261
def display_method_list(methods)
page do
@formatter.wrap "More than one method matched your request. You can refine your search by asking for information on one of:"
@formatter.blankline
methods.each do |method|
@formatter.raw_print_line "#{method.full_name} [#{method.source_path}]\n"
end
end
end