class Codeowners::Cli::SuggestionStrategy

Build a list of suggestions case the pattern is not matching.

Public Class Methods

new(pattern) click to toggle source
# File lib/codeowners/cli/suggest_file_from_pattern.rb, line 35
def initialize(pattern)
  @pattern = pattern
end

Public Instance Methods

pick_suggestions() click to toggle source
# File lib/codeowners/cli/suggest_file_from_pattern.rb, line 39
def pick_suggestions
  raise NotImplementedError
end