Sha256: 042310eb7622053c51be0315e7c5d514ba904c2451ba82896e7ec4bfdd522557
Contents?: true
Size: 541 Bytes
Versions: 661
Compression:
Stored size: 541 Bytes
Contents
require_relative 'abstract_text_match_rule' module Precheck class TestWordsRule < AbstractTextMatchRule def self.key :test_words end def self.env_name "RULE_TEST_WORDS" end def self.friendly_name "No words indicating test content" end def self.description "using text indicating this release is a test" end def lowercased_words_to_look_for [ "testing", "just a test", "alpha test", "beta test" ].map(&:downcase) end end end
Version data entries
661 entries across 661 versions & 5 rubygems