class Pry::Command::FindMethod

def print_matches_for_class(klass, grouped)

Print matched methods for a class
def print_matches_for_class(klass, grouped)
  output.puts text.bold(klass.name)
  grouped[klass].each do |method|
    header = method.name_with_owner
    output.puts header + additional_info(header, method)
  end
end