sambot 0.1.179 → 0.1.180
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 +4 -4
- data/lib/sambot/testing/vault_helper.rb +1 -1
- data/lib/sambot/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 192ef88d12cd902e6ed990a73c9617188a1d73c1
|
4
|
+
data.tar.gz: 81975cdcf925dd8f7d0dcbc1603ad690c9bdbca4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c21122a6aca6c62718a9f580f4e86bdad6469cd7f95dd446636cbe96b0bad4dc3536ddd832c3a563aab1790a2bd53435ae8f8d7be33b6782ba08c40e077c4004
|
7
|
+
data.tar.gz: 4c55a59ad738d7a4952c0a28a296a88cfb509f32ee562dce5e03d518cb16b6ee081c57c33f20e4513c36b8b14b7da972ad1ba880bd7c8fe17162bb674684e97e
|
@@ -26,7 +26,7 @@ module Sambot
|
|
26
26
|
|
27
27
|
def load_secrets(config, src = 'local_testing')
|
28
28
|
UI.info("Reading secrets from the configuration file")
|
29
|
-
if config.secrets.empty?
|
29
|
+
if config.secrets.nil? || config.secrets.empty?
|
30
30
|
UI.info("No secrets were found in the secrets configuration file")
|
31
31
|
return 0
|
32
32
|
else
|
data/lib/sambot/version.rb
CHANGED