neetob 0.5.34 → 0.5.35
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47c9ade252c12f04039b049a314ee707d62dd7c0855881962f46154d181e9cf3
|
4
|
+
data.tar.gz: 7b232f8ae896fdaf9f43eef9b13a18911beb88f83136af76d7bfb2b58bbc7a21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: beb78e16e139dd28832e1328cc4a4b3121eb91483d4477cf7cb957dcc2b88e8957ad295ab6cf29ecd9d4f10f29b5ccafedf28cde7809afe9b6cdfe045454c0c0
|
7
|
+
data.tar.gz: 6aab97331c2a5a95ccae653f49a8cbc2ac2ab5aa44c0b243f71f01f31e257d075e84e621de61d41f16135301ec165248eaba61a0066ed546537a70f0192cad1c
|
data/Gemfile.lock
CHANGED
@@ -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 <<
|
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
|
data/lib/neetob/version.rb
CHANGED
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.
|
4
|
+
version: 0.5.35
|
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-
|
11
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|