Class: Precheck::OtherPlatformsRule

Inherits:
AbstractTextMatchRule show all
Defined in:
precheck/lib/precheck/rules/other_platforms_rule.rb

Constant Summary

Constants inherited from AbstractTextMatchRule

AbstractTextMatchRule::WORD_SEARCH_TYPES

Instance Attribute Summary

Attributes inherited from FastlaneCore::ConfigItem

#allow_shell_conversion, #code_gen_default_value, #code_gen_sensitive, #conflict_block, #conflicting_options, #default_value, #default_value_dynamic, #deprecated, #description, #display_in_shell, #env_name, #key, #optional, #sensitive, #short_option, #skip_type_validation, #verify_block

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractTextMatchRule

#pass_if_empty?, #remove_safe_words, #rule_block, #word_search_type

Methods inherited from TextRule

#handle_item?

Methods inherited from Rule

#check_item, #customize_with_data, default_value, #friendly_name, #handle_item?, #initialize, #inspect, #item_field_supported?, #needs_customization?, #perform_check, #rule_block, #skip_item_not_meant_for_this_rule, #supported_fields_symbol_set, #to_s

Methods inherited from FastlaneCore::ConfigItem

#auto_convert_value, #data_type, #deprecated_description, #doc_default_value, #ensure_boolean_type_passes_validation, #ensure_generic_type_passes_validation, #help_default_value, #initialize, #is_string, #string?, #to_s, #update_code_gen_default_value_if_able!, #valid?, #verify!

Constructor Details

This class inherits a constructor from Precheck::Rule

Class Method Details

.descriptionObject



17
18
19
# File 'precheck/lib/precheck/rules/other_platforms_rule.rb', line 17

def self.description
  "mentioning other platforms, like Android or Blackberry"
end

.env_nameObject



9
10
11
# File 'precheck/lib/precheck/rules/other_platforms_rule.rb', line 9

def self.env_name
  "RULE_OTHER_PLATFORMS"
end

.friendly_nameObject



13
14
15
# File 'precheck/lib/precheck/rules/other_platforms_rule.rb', line 13

def self.friendly_name
  "No mentioning  competitors"
end

.keyObject



5
6
7
# File 'precheck/lib/precheck/rules/other_platforms_rule.rb', line 5

def self.key
  :other_platforms
end

Instance Method Details

#allowed_lowercased_wordsObject



21
22
23
24
25
26
# File 'precheck/lib/precheck/rules/other_platforms_rule.rb', line 21

def allowed_lowercased_words
  [
    "google analytics",
    "google drive"
  ]
end

#lowercased_words_to_look_forObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'precheck/lib/precheck/rules/other_platforms_rule.rb', line 28

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