openhab-scripting 5.36.1 → 5.36.2

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: 0427aeac1793f2b6e5e9740d2ea751442b4b962eaa4898825348ea9f0e3ce600
4
- data.tar.gz: 6a4ba6890eb7d4a56e8e43126a5b2e85c548f88c29fe37d392b0ddb785fbb27a
3
+ metadata.gz: 9dca6625d5d2a4ac13a8012df40e3d0a0ebdefced290c5cff076465c6f759757
4
+ data.tar.gz: 25f336aa6c3cd7c7a0e47f5e237fd19ac73f6f1ea989ff18d911e2a66a22048b
5
5
  SHA512:
6
- metadata.gz: 582c2784343055f0ac76c7c5c99a31fa9ef60b61715514a7d7f8d9981d2318e648c57e487ea52f3b627211d7df89106e1529c4973d1b9a370460fd6a09215f4d
7
- data.tar.gz: 4af926745c54c175a6409eef9f0a6a95d3bddd5f5105163ed644ed4556517ec259810705439d0b7d3ffe78efc503b7493bc47608c2a1f5566712f309475ae383
6
+ metadata.gz: 2df6953fce517e82fda1fc8e3a5098c63af45333c1637639f6488597230d2634c18a666eb4bc3ae1302abb0d19fdd64eb9c256b7bb263b6f7d6852b9bead6600
7
+ data.tar.gz: bfb62aca10a6a2b3bff00adf94f39d1b30f806fc55cc34f503102d6c2c349ad938c1a8f5c71f17d60164eaeb810141f38ca0120a5357feec9f69af7aa71866e2
@@ -187,13 +187,10 @@ module OpenHAB
187
187
  __raise__ StaleProxyError.new(@klass.name.split("::")[-2][0...-1], __send__(@klass::UID_METHOD))
188
188
  end
189
189
 
190
- if target_respond_to?(target, method, false)
191
- target.__send__(method, ...)
192
- elsif ::Kernel.method_defined?(method) || ::Kernel.private_method_defined?(method)
193
- ::Kernel.instance_method(method).bind_call(self, ...)
194
- else
195
- super
196
- end
190
+ super
191
+
192
+ # do _not_ attempt to inline the rest of Delegator#method_missing.
193
+ # see spec/openhab/core/items/proxy_spec.rb for the result
197
194
  end
198
195
 
199
196
  # @!visibility private
@@ -4,6 +4,6 @@ module OpenHAB
4
4
  module DSL
5
5
  # Version of openHAB helper libraries
6
6
  # @return [String]
7
- VERSION = "5.36.1"
7
+ VERSION = "5.36.2"
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openhab-scripting
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.36.1
4
+ version: 5.36.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian O'Connell