This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
collect_methods()
public
Create a list of HtmlMethod
objects for each method in the corresponding context object. If the
@options.show_all variable is set (corresponding to the --all
option, we include all methods, otherwise just the public ones.
# File lib/rdoc/generators/html_generator.rb, line 321
def collect_methods
list = @context.method_list
unless @options.show_all
list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
end
@methods = list.collect {|m| HtmlMethod.new(m, self, @options) }
end