neetob 0.5.34 → 0.5.36

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: 7d1e81ad19b7fc0000a78ee52943577368c4eb26ee7fa8765cefdd7c48184be0
4
- data.tar.gz: 64bdf65d26eeefa1c8f7282ad6f5b33be88df114cc4b24e2ac661a3fb7975a9e
3
+ metadata.gz: 02d8379e59c0f1ae5aff48cb624fc41225d5e5ee677f137bba4d897d0efe654c
4
+ data.tar.gz: c0301285bd08c61c6205e3d672a4716ff2c8caf5689123c4513986e0c6de9ec1
5
5
  SHA512:
6
- metadata.gz: ba217948009c17afa6ed22ff558d7edf585b2a9f8beb5bb8786c967cc52ff9f8f11ccd9d26467c0b7cd8350afc102341e4a2513fdd29e25c752edb2a78b3dc1e
7
- data.tar.gz: 5cb907b16d2508c4fbac786eeb9567fe54f35e1a750c8366d1f3590bbb9d1705c997c6a992775761bc152b5282634faf479c533a6f306ab3c6abc34400f22c64
6
+ metadata.gz: e3cf68a89b8d1c952eb6f1edfaf9351e511a53ed9955ac387f0e7080d33409b826811fa610c68ce1c37203b24dfa0ddc21d193be3d29479749ba246362a31d00
7
+ data.tar.gz: d707124de320657b6a6c783a85c04ba23bc960e560514263a2d24c1bd4eb98e67dec1d284122444ae04869a2add08352067c3ef27b949aeb29aed98bea1d5996
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- neetob (0.5.34)
4
+ neetob (0.5.36)
5
5
  brakeman (~> 5.0)
6
6
  chronic
7
7
  dotenv (~> 2.8.1)
data/bookmarks.md CHANGED
@@ -1,6 +1,8 @@
1
1
 
2
2
  [Honeybadger production issues](https://github.com/issues?q=is%3Aopen+is%3Aissue+org%3Abigbinary+archived%3Afalse+-repo%3Abigbinary%2Fnetcamps+-repo%3Abigbinary%2Fneeto-chatify-web+-repo%3Abigbinary%2Fneeto-crm-web+-repo%3Abigbinary%2Fneeto-testify-web+-repo%3Abigbinary%2Fjacky-winter-web+-repo%3Abigbinary%2Faceinvoice-web+-repo%3Abigbinary%2Ftrtle-rn+-repo%3Abigbinary%2Ftrtle-web+-repo%3Abigbinary%2Fadvanced-react-js+sort%3Acreated-asc+author%3Aapp%2Fhoneybadger+label%3Aproduction+-repo%3Abigbinary%2Fintellectio)
3
3
 
4
+ [Bugs](https://github.com/search?q=org%3Abigbinary+state%3Aopen+is%3Aissue+sort%3Acreated-asc+label%3Abug&type=issues)
5
+
4
6
  [Honeybadger staging issues](https://github.com/issues?q=is%3Aopen+is%3Aissue+org%3Abigbinary+archived%3Afalse+-repo%3Abigbinary%2Fnetcamps+-repo%3Abigbinary%2Fneeto-chatify-web+-repo%3Abigbinary%2Fneeto-crm-web+-repo%3Abigbinary%2Fneeto-testify-web+-repo%3Abigbinary%2Fjacky-winter-web+-repo%3Abigbinary%2Faceinvoice-web+-repo%3Abigbinary%2Ftrtle-rn+-repo%3Abigbinary%2Ftrtle-web+-repo%3Abigbinary%2Fadvanced-react-js+sort%3Acreated-asc+author%3Aapp%2Fhoneybadger+label%3Astaging+-repo%3Abigbinary%2Fintellectio)
5
7
 
6
8
  [All Honeybadger issues](https://github.com/issues?page=1&q=is%3Aopen+is%3Aissue+org%3Abigbinary+archived%3Afalse+-repo%3Abigbinary%2Fnetcamps+-repo%3Abigbinary%2Fneeto-chatify-web+-repo%3Abigbinary%2Fneeto-crm-web+-repo%3Abigbinary%2Fneeto-testify-web+-repo%3Abigbinary%2Fjacky-winter-web+-repo%3Abigbinary%2Faceinvoice-web+-repo%3Abigbinary%2Ftrtle-rn+-repo%3Abigbinary%2Ftrtle-web+-repo%3Abigbinary%2Fadvanced-react-js+sort%3Acreated-asc+author%3Aapp%2Fhoneybadger+-repo%3Abigbinary%2Fintellectio)
@@ -5,6 +5,8 @@ module Neetob
5
5
  module MonthlyAudit
6
6
  module Misc
7
7
  class SparkpostSubAccountUsedForAllApps < CLI::Base
8
+ APPS_TO_IGNORE = ["neeto-wheel-web"]
9
+
8
10
  def initialize
9
11
  super()
10
12
  end
@@ -21,7 +23,11 @@ module Neetob
21
23
  ui.info "- Finally, set Audit Passed as Yes only if the last check passed, otherwise set it as No and add a comment in the Comments column"
22
24
  ui.info "\n"
23
25
  NeetoCompliance::NeetoRepos.products.keys.each do |repo|
24
- repo_data << [repo, nil, nil]
26
+ repo_data << (
27
+ APPS_TO_IGNORE.include?(repo) ?
28
+ [repo, "No", "App ignored from this check", "Ignored"] :
29
+ [repo, nil, nil, nil]
30
+ )
25
31
  end
26
32
  ui.print_table(repo_data)
27
33
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Neetob
4
- VERSION = "0.5.34"
4
+ VERSION = "0.5.36"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neetob
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.34
4
+ version: 0.5.36
5
5
  platform: ruby
6
6
  authors:
7
7
  - Udai Gupta
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-29 00:00:00.000000000 Z
11
+ date: 2025-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor