fnando/check_files

View on GitHub
lib/check_files/notifiers/logging.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module CheckFiles
  module Notifiers
    class Logging
      def self.call(checker)
        $stderr << "\n\e[0;31m=> You must restart your web development server; #{checker.pattern} has changed.\e[0m\n" # rubocop:disable Metrics/LineLength
      end
    end
  end
end