Sha256: 892ec560f3676ebd62811f1c9a2d2bc545c32559927afec1e34150e985ddc421
Contents?: true
Size: 727 Bytes
Versions: 3
Compression:
Stored size: 727 Bytes
Contents
require_relative 'abstract_text_match_rule' module Precheck class FutureFunctionalityRule < AbstractTextMatchRule def self.key :future_functionality end def self.env_name "RULE_FUTURE_FUNCTIONALITY" end def self.friendly_name "No future functionality promises" end def self.description "mentioning features or content that is not currently available in your app" end def lowercased_words_to_look_for [ "coming soon", "coming shortly", "in the next release", "arriving soon", "arriving shortly", "here soon", "here shortly" ].map(&:downcase) end end end
Version data entries
3 entries across 3 versions & 1 rubygems