openhab-scripting 2.20.0 → 2.20.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/openhab/dsl/monkey_patch/items/items.rb +2 -2
- data/lib/openhab/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: c8d7de90fee54798d88e51a4ea9f7ac6437852d7c4eb5da2b847700f0dedd5de
|
4
|
+
data.tar.gz: 9a91e9a2ee0d977f4e2a0dd9b0ba50b1db89c71554596bfd8ca86bd9ec168d68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d956f08c8884347de414eb9de04a69184c9d95a39c35bd0ff8685ceefb28efe64945a944a87efd11da16f5dceda77be453693b84cc816a7541e3e923b218479
|
7
|
+
data.tar.gz: ab3fd69c22c115a03848b112922f9b489d69c35a1bac3040ef40c9a73ffa8540e73318011768647fe0793a197973239e028949126a83ed233340efbeb667f490
|
@@ -101,10 +101,10 @@ module OpenHAB
|
|
101
101
|
#
|
102
102
|
# Get the string representation of the state of the item
|
103
103
|
#
|
104
|
-
# @return [String] State of the item as a string
|
104
|
+
# @return [String] State of the item as a string
|
105
105
|
#
|
106
106
|
def to_s
|
107
|
-
state
|
107
|
+
method(:state).super_method.call.to_s # call the super state to include UNDEF/NULL
|
108
108
|
end
|
109
109
|
|
110
110
|
#
|
data/lib/openhab/version.rb
CHANGED