bmx-event_hook_client_server 1.0.6 → 1.0.7
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: d6488af18033d4476841384b9c8430cf41e13fd9a101da4890633934adc4bcea
|
|
4
|
+
data.tar.gz: 5ec5aecbdd7b4c58b9b03346b615c1d888b0e8816a9fda9b8b6673317ebd44fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fdacafb52037cc83e4814ffee6c097ba6c8be864c28089e75c310acf0b7b5cb4637211a888d8971b8998e868f7d43e8a205ca2ff85e5f9aa2c5b7bd56088616
|
|
7
|
+
data.tar.gz: 5c072783f3bad7d5f0f846f13d4b19e35090e8909e6e1ca454277e500c1f39b7349ce2123545a300e0276ecfbc71d5e1c5b2e5277e7d867da9731d406586e4a9
|
|
@@ -44,6 +44,7 @@ module EventHookClientServer
|
|
|
44
44
|
when nil then { null_value: value }
|
|
45
45
|
when Numeric then { number_value: value }
|
|
46
46
|
when String then { string_value: value }
|
|
47
|
+
when Symbol then { string_value: value.to_s }
|
|
47
48
|
when TrueClass then { bool_value: value }
|
|
48
49
|
when FalseClass then { bool_value: value }
|
|
49
50
|
when Array then { list_value: cast_array(value) }
|