class Pry::Command::FindMethod

def show_search_results(matches)

Parameters:
  • matches (Array) --
def show_search_results(matches)
  if matches.empty?
    output.puts text.bold("No Methods Matched")
  else
    print_matches(matches)
  end
end