Arie/tf2_line_parser

View on GitHub
lib/tf2_line_parser/events/current_score.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module TF2LineParser
  module Events
    class CurrentScore < Score
      def self.regex
        @regex ||= /#{regex_time} #{regex_team} current score #{regex_score} with .*/.freeze
      end
    end
  end
end