Sha256: f34e6ea7a298b37d28d077417ac888088a8bbdc268367138c8aa40ec4270985d
Contents?: true
Size: 694 Bytes
Versions: 660
Compression:
Stored size: 694 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
660 entries across 660 versions & 5 rubygems