class Precheck::FutureFunctionalityRule

Public Class Methods

description() click to toggle source
# File precheck/lib/precheck/rules/future_functionality_rule.rb, line 17
def self.description
  "mentioning features or content that is not currently available in your app"
end
env_name() click to toggle source
# File precheck/lib/precheck/rules/future_functionality_rule.rb, line 9
def self.env_name
  "RULE_FUTURE_FUNCTIONALITY"
end
friendly_name() click to toggle source
# File precheck/lib/precheck/rules/future_functionality_rule.rb, line 13
def self.friendly_name
  "No future functionality promises"
end
key() click to toggle source
# File precheck/lib/precheck/rules/future_functionality_rule.rb, line 5
def self.key
  :future_functionality
end

Public Instance Methods

lowercased_words_to_look_for() click to toggle source
# File precheck/lib/precheck/rules/future_functionality_rule.rb, line 21
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