openhab-scripting 4.19.0 → 4.19.1
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/openhab/version.rb +1 -1
- data/lib/openhab.rb +0 -5
- 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: 96e1f3f4c2dd1c8239dcc6d72ac704fd06037f79367213210bd6854963449df0
|
|
4
|
+
data.tar.gz: 75199e81a2b830e125056280c54703aae2db59a7a63aa290efc03f1bc17fcbbc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78c8cfe716265aaecb8f96ec3470fb177ff3fd80f0f94611515482254970669d6ac43a0a62033b7e16e887a49a9ca2a56b56b54632dfddd96b0c2919017963bc
|
|
7
|
+
data.tar.gz: e422f430aa68218e79b4f7b278fa613ea930361207da72ccfe467ff6597dd902b585e5ecb9e3a014eb20f10dd99132b294faeb380dd50768ccf001efcb6c8949
|
data/lib/openhab/version.rb
CHANGED
data/lib/openhab.rb
CHANGED
|
@@ -20,23 +20,18 @@ module OpenHAB
|
|
|
20
20
|
#
|
|
21
21
|
#
|
|
22
22
|
# Number of extensions and includes requires more lines
|
|
23
|
-
# rubocop: disable Metrics/MethodLength
|
|
24
23
|
def self.extended(base)
|
|
25
24
|
OpenHAB::Core.wait_till_openhab_ready
|
|
26
25
|
base.extend Log
|
|
27
26
|
base.extend OpenHAB::Core::ScriptHandling
|
|
28
27
|
base.extend OpenHAB::Core::EntityLookup
|
|
29
28
|
base.extend OpenHAB::DSL
|
|
30
|
-
base.extend OpenHAB::DSL::Between
|
|
31
29
|
|
|
32
30
|
base.send :include, OpenHAB::Core::ScriptHandlingCallbacks
|
|
33
|
-
base.send :include, OpenHAB::DSL::Items
|
|
34
|
-
base.send :include, OpenHAB::DSL::Types
|
|
35
31
|
logger.info "OpenHAB JRuby Scripting Library Version #{OpenHAB::VERSION} Loaded"
|
|
36
32
|
|
|
37
33
|
OpenHAB::Core.add_rubylib_to_load_path
|
|
38
34
|
end
|
|
39
|
-
# rubocop: enable Metrics/MethodLength
|
|
40
35
|
end
|
|
41
36
|
|
|
42
37
|
# Extend caller with OpenHAB methods
|