Sha256: 21ef8facc49b9e0883fe7a34bbfb534b853a8ab6dd42f3da6d645509a6516096
Contents?: true
Size: 724 Bytes
Versions: 252
Compression:
Stored size: 724 Bytes
Contents
require 'precheck/rule' require 'precheck/rules/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
252 entries across 252 versions & 1 rubygems