neetob 0.5.27 → 0.5.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43bee5927b6fc71846d91dde3422ae976aafe5f25a9d00324b74fdf1e9582c2f
4
- data.tar.gz: c8335267601b2bbcb5a2055d09c774aa76d1c1868fc0b2e3d9437bfe6c2cd3cd
3
+ metadata.gz: 6268ba86f6681dc9e0f09f6f72561e0bb053ca891d0f9bc54849c0c5dd8c5094
4
+ data.tar.gz: 7b5beaf94dcb45ec8bae12fb7e31cbc533ffb355b6226ada8164a00d4556b94e
5
5
  SHA512:
6
- metadata.gz: 3f51dcfcae88fc1bcb8993c7f69473cc7cea25e434f551f5fa2a737c16b3a580bad6c85077e0160b76021fe0c86750e2d5a78b291b5d845fbff32bcd833fd8c3
7
- data.tar.gz: 4be54dcb091c319bead3605732579fe1e8079903014d9802cfd512397b5191fd6314b23b746916b91e2adf74a908b2da31b1cfc8400d88e931a060da95a4eddf
6
+ metadata.gz: a5d6d3df725dc9f2c6d70d6153d9bc83327c2686533ba800d2f716daa4adf391c4212b1a3cc05fadc09fcd932aca6e31af835ef24778f275311a9353df2caa3b
7
+ data.tar.gz: ea1d6eb95b585348725bb7b6b3956390cd9c60ee4a698243253b86b4004092e26ed2a406196287802a7c4e047d4c8dcdccd6a82a763b93f230eb0b3431a10503
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob (0.5.27)
4
+ neetob (0.5.28)
5
5
  brakeman (~> 5.0)
6
6
  chronic
7
7
  dotenv (~> 2.8.1)
@@ -6,6 +6,10 @@ module Neetob
6
6
  module InstancesAndAddons
7
7
  module Cronitor
8
8
  class SetupCorrectlyForHelpCenter < CLI::Base
9
+ APPS_TO_IGNORE = [
10
+ "NeetoTower"
11
+ ]
12
+
9
13
  def initialize
10
14
  super()
11
15
  end
@@ -38,6 +42,9 @@ module Neetob
38
42
  audit_passed = "Yes"
39
43
  end
40
44
  end
45
+ if (audit_passed == "No") && APPS_TO_IGNORE.map(&:downcase).include?(app.downcase.to_s)
46
+ audit_passed = "Ignored"
47
+ end
41
48
 
42
49
  apps_data << [app, monitor_for_app_help_center_present, monitor_for_app_help_center_enabled, comments,
43
50
  audit_passed]
@@ -6,6 +6,11 @@ module Neetob
6
6
  module InstancesAndAddons
7
7
  module Cronitor
8
8
  class SetupCorrectlyForLandingPages < CLI::Base
9
+ APPS_TO_IGNORE = [
10
+ "NeetoAuth",
11
+ "NeetoTower"
12
+ ]
13
+
9
14
  def initialize
10
15
  super()
11
16
  end
@@ -39,6 +44,10 @@ module Neetob
39
44
  end
40
45
  end
41
46
 
47
+ if (audit_passed == "No") && APPS_TO_IGNORE.map(&:downcase).include?(app.downcase.to_s)
48
+ audit_passed = "Ignored"
49
+ end
50
+
42
51
  apps_data << [app, monitor_for_app_landing_page_present, monitor_for_app_landing_page_enabled,
43
52
  comments, audit_passed]
44
53
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.5.27"
4
+ VERSION = "0.5.28"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.27
4
+ version: 0.5.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Udai Gupta