opswalrus 1.0.107 → 1.0.108
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/Gemfile.lock +1 -1
- data/lib/opswalrus/app.rb +5 -0
- data/lib/opswalrus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a57c26c94a3dff09f0385653ef331bb388ac8e861a8ed0f865c9f2f752af1c68
|
|
4
|
+
data.tar.gz: fd75b79cbb55f9f37769f5500b7ccc63ce1fc8f93e48a9289f7406de95c84043
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94a3e80aea1b03018b79bcf5606e747f0ab62721481feb458691aa9c89a196954802c486603cb686dc6a11786ffd8e258d516f424ec03e378d1fd8777625eb88
|
|
7
|
+
data.tar.gz: bbe1dbe4ac4b98c36aae37b950ae3ea784599e95f1d6b96f230033973794a77417da9cc0f5ac67acaf64fcf5f6aaf551684fd1ba27ba7b1adaa66f069383bbf8
|
data/Gemfile.lock
CHANGED
data/lib/opswalrus/app.rb
CHANGED
|
@@ -209,6 +209,11 @@ module OpsWalrus
|
|
|
209
209
|
json_hash = JSON.parse(params) rescue nil
|
|
210
210
|
json_hash = json_hash.is_a?(Hash) ? json_hash : nil
|
|
211
211
|
|
|
212
|
+
if App.instance.info?
|
|
213
|
+
info("runtime params:")
|
|
214
|
+
info(json_hash.inspect)
|
|
215
|
+
end
|
|
216
|
+
|
|
212
217
|
@params = json_hash # @params returns a Hash or nil
|
|
213
218
|
end
|
|
214
219
|
|
data/lib/opswalrus/version.rb
CHANGED