Sha256: 37a76047274649b1e579589c798ad26bf07e2cb2aad19c8c53acc66722c5bc34
Contents?: true
Size: 776 Bytes
Versions: 185
Compression:
Stored size: 776 Bytes
Contents
require_relative 'abstract_text_match_rule' module Precheck class OtherPlatformsRule < AbstractTextMatchRule def self.key :other_platforms end def self.env_name "RULE_OTHER_PLATFORMS" end def self.friendly_name "No mentioning competitors" end def self.description "mentioning other platforms, like Android or Blackberry" end def allowed_lowercased_words ["google analytics"] end def lowercased_words_to_look_for [ "android", "google", "compuserve", "windows phone", "windows 10 mobile", "sailfish os", "windows universal app", "blackberry", "palm os", "symbian" ].map(&:downcase) end end end
Version data entries
185 entries across 185 versions & 1 rubygems