class Dependabot::DependabotError

def replace_capture_groups(string, regex, replacement)

def replace_capture_groups(string, regex, replacement)
  string.scan(regex).flatten.compact.reduce(string) do |original_msg, match|
    original_msg.gsub(match, replacement)
  end
end