openhab-scripting 2.9.1 → 2.11.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/lib/openhab/core/dsl/gems.rb +1 -26
  3. data/lib/openhab/core/dsl/rule/item.rb +1 -0
  4. data/lib/openhab/core/dsl/rule/rule.rb +18 -1
  5. data/lib/openhab/core/duration.rb +9 -0
  6. data/lib/openhab/version.rb +1 -1
  7. metadata +21 -67
  8. data/.github/workflows/workflow.yml +0 -327
  9. data/.gitignore +0 -17
  10. data/.java-version +0 -1
  11. data/.rspec +0 -1
  12. data/.yardopts +0 -1
  13. data/CHANGELOG.md +0 -113
  14. data/Gemfile +0 -28
  15. data/Gemfile.lock +0 -245
  16. data/Guardfile +0 -35
  17. data/LICENSE +0 -277
  18. data/README.md +0 -23
  19. data/Rakefile +0 -406
  20. data/bin/console +0 -15
  21. data/bin/setup +0 -8
  22. data/config/userdata/config/org/openhab/restauth.config +0 -3
  23. data/cucumber.yml +0 -1
  24. data/docs/_config.yml +0 -135
  25. data/docs/contributing/index.md +0 -47
  26. data/docs/examples/conversions.md +0 -123
  27. data/docs/examples/index.md +0 -61
  28. data/docs/index.md +0 -19
  29. data/docs/installation/index.md +0 -26
  30. data/docs/motivation/index.md +0 -27
  31. data/docs/usage/execution.md +0 -9
  32. data/docs/usage/execution/delay.md +0 -48
  33. data/docs/usage/execution/otherwise.md +0 -30
  34. data/docs/usage/execution/run.md +0 -70
  35. data/docs/usage/execution/triggered.md +0 -48
  36. data/docs/usage/guards.md +0 -51
  37. data/docs/usage/guards/between.md +0 -30
  38. data/docs/usage/guards/not_if.md +0 -41
  39. data/docs/usage/guards/only_if.md +0 -40
  40. data/docs/usage/index.md +0 -11
  41. data/docs/usage/items.md +0 -66
  42. data/docs/usage/items/contact.md +0 -84
  43. data/docs/usage/items/dimmer.md +0 -147
  44. data/docs/usage/items/groups.md +0 -76
  45. data/docs/usage/items/number.md +0 -225
  46. data/docs/usage/items/string.md +0 -49
  47. data/docs/usage/items/switch.md +0 -85
  48. data/docs/usage/misc.md +0 -7
  49. data/docs/usage/misc/actions.md +0 -108
  50. data/docs/usage/misc/duration.md +0 -21
  51. data/docs/usage/misc/gems.md +0 -25
  52. data/docs/usage/misc/logging.md +0 -21
  53. data/docs/usage/misc/metadata.md +0 -128
  54. data/docs/usage/misc/store_states.md +0 -42
  55. data/docs/usage/misc/time_of_day.md +0 -69
  56. data/docs/usage/misc/timers.md +0 -67
  57. data/docs/usage/rule.md +0 -43
  58. data/docs/usage/things.md +0 -29
  59. data/docs/usage/triggers.md +0 -8
  60. data/docs/usage/triggers/changed.md +0 -57
  61. data/docs/usage/triggers/channel.md +0 -54
  62. data/docs/usage/triggers/command.md +0 -69
  63. data/docs/usage/triggers/cron.md +0 -19
  64. data/docs/usage/triggers/every.md +0 -76
  65. data/docs/usage/triggers/updated.md +0 -78
  66. data/openhab-scripting.gemspec +0 -30
  67. data/openhab_rules/warmup.rb +0 -5
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /_site/
5
- /docs/.jekyll-cache/
6
- /docs/yard/
7
- /coverage/
8
- /doc/
9
- /pkg/
10
- /spec/reports/
11
- /tmp/
12
- /.obsidian/
13
- openhab.code-workspace
14
- /.idea/
15
- .java-verison
16
- .ruby-version
17
- .jekyll-cache/
data/.java-version DELETED
@@ -1 +0,0 @@
1
- 11.0.8
data/.rspec DELETED
@@ -1 +0,0 @@
1
- --require spec_helper
data/.yardopts DELETED
@@ -1 +0,0 @@
1
- --output-dir docs/yard
data/CHANGELOG.md DELETED
@@ -1,113 +0,0 @@
1
- # JRuby OpenHAB Scripting change log
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- Project versioning adheres to [Semantic Versioning](http://semver.org/). <br>
6
- Commit convention is based on [Conventional Commits](http://conventionalcommits.org). <br>
7
- Change log format is based on [Keep a Changelog](http://keepachangelog.com/). <br>
8
-
9
- ## 2.9.0
10
- ### Added
11
- - Support OpenHAB Actions
12
-
13
- ## 2.8.1
14
- ### Fixed
15
- - Fixed StringItem comparison against a string
16
-
17
- ## 2.8.0
18
- ### Added
19
- - Support for accessing item metadata namespace, value, and configuration
20
-
21
- ## 2.7.0
22
- ### Added
23
- - SwitchItem.toggle to toggle a SwitchItem similar to SwitchItem << !SwitchItem
24
-
25
- ## 2.6.1
26
- ### Fixed
27
- - Race condition with `after` block
28
- - Unknown constant error in certain cases uses `between` blocks
29
-
30
- ## 2.6.0
31
- ### Added
32
- - `TimeOfDay.between?` to check if TimeOfDay object is between supplied range
33
- ### Fixed
34
- - Reference in rules to TimeOfDay::ALL_DAY
35
-
36
-
37
- ## 2.5.1
38
- ### Fixed
39
- - Corrected time of day parsing to be case insensitive
40
- - Merge conflict
41
-
42
- ## 2.5.0
43
- ### Added
44
- - `between` can be used throughout rules systems
45
- #### Changed
46
- - TimeOfDay parsing now supports AM/PM
47
-
48
- ## 2.4.0
49
- ### Added
50
- - Support to allow comparison of TimeOfDay objects against strings
51
- - Support for storing and restoring Item states
52
-
53
- ## 2.3.0
54
- ### Added
55
- - Support for rule description
56
-
57
- ## 2.2.1
58
- ### Fixed
59
- - `!` operator on SwitchItems now returns ON if item is UNDEF or NULL
60
-
61
- ## 2.2.0
62
- ### Added
63
- - Support for thing triggers in rules
64
-
65
- ### Changed
66
- - Updated docs to point to OpenHAB document for script locations
67
-
68
- ## 2.1.0
69
- ### Added
70
- - Timer delegate for 'active?', 'running?', 'terminated?'
71
-
72
- ## 2.0.1
73
- ### Fixed
74
- - Logging of mod and/or inputs can cause an exception of they are nil
75
- - Timers (after) now available inside of rules
76
-
77
- ### Changed
78
- - DSL imports now shared by OpenHAB module and Rules Module
79
-
80
- ## 2.0.0
81
- ### Added
82
- - Timer delegate for `after` method that supports reschedule
83
-
84
- ### Changed
85
- - **Breaking:** `after` now returns a ruby Timer delegate
86
-
87
- ## 1.1.0
88
- ### Added
89
- - Added support for channels triggers to rules
90
-
91
- ### Changed
92
- - Fixed documentation for changed/updated/receive_command options
93
-
94
- ## 1.0.0
95
- ### Changed
96
- - **Breaking:** Changed commanded method for rules to received_command
97
-
98
- ## 0.2.0
99
- ### Added
100
- - Ability to execute rules based on commands sent to items, groups and group members
101
- - Ability to send updates from item objects
102
-
103
- ### Changed
104
- - Fixed documentation for comparing dimensioned items against strings
105
-
106
- ## 0.1.0
107
- ### Added
108
- - Support for item updates within rules languages
109
- ### Changed
110
- - Installation instructions to specify using latest release rather than a specific version
111
-
112
- ## 0.0.1
113
- - Initial release
data/Gemfile DELETED
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- # Specify your gem's dependencies in openhab-scripting.gemspec
6
- gemspec
7
-
8
- group :test do
9
- gem 'cucumber'
10
- gem 'cuke_linter', '~> 1.2'
11
- gem 'httparty'
12
- gem 'persistent_httparty'
13
- gem 'rspec'
14
- gem 'yaml-lint'
15
- end
16
-
17
- group :development do
18
- gem 'guard-shell'
19
- gem 'guard-yard'
20
- gem 'jekyll', '~> 4.2', require: false
21
- gem 'just-the-docs', '~> 0.3'
22
- gem 'kramdown-parser-gfm'
23
- gem 'process_exists'
24
- gem 'rake', '~> 12.0'
25
- gem 'rubocop', '~> 1.8', require: false
26
- gem 'tty-command'
27
- gem 'yard'
28
- end
data/Gemfile.lock DELETED
@@ -1,245 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- openhab-scripting (2.9.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- activesupport (6.0.3.4)
10
- concurrent-ruby (~> 1.0, >= 1.0.2)
11
- i18n (>= 0.7, < 2)
12
- minitest (~> 5.1)
13
- tzinfo (~> 1.1)
14
- zeitwerk (~> 2.2, >= 2.2.2)
15
- addressable (2.7.0)
16
- public_suffix (>= 2.0.2, < 5.0)
17
- ast (2.4.1)
18
- builder (3.2.4)
19
- coderay (1.1.3)
20
- colorator (1.1.0)
21
- concurrent-ruby (1.1.7)
22
- cucumber (5.2.0)
23
- builder (~> 3.2, >= 3.2.4)
24
- cucumber-core (~> 8.0, >= 8.0.1)
25
- cucumber-create-meta (~> 2.0, >= 2.0.2)
26
- cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
27
- cucumber-gherkin (~> 15.0, >= 15.0.2)
28
- cucumber-html-formatter (~> 9.0, >= 9.0.0)
29
- cucumber-messages (~> 13.1, >= 13.1.0)
30
- cucumber-wire (~> 4.0, >= 4.0.1)
31
- diff-lcs (~> 1.4, >= 1.4.4)
32
- multi_test (~> 0.1, >= 0.1.2)
33
- sys-uname (~> 1.2, >= 1.2.1)
34
- cucumber-core (8.0.1)
35
- cucumber-gherkin (~> 15.0, >= 15.0.2)
36
- cucumber-messages (~> 13.0, >= 13.0.1)
37
- cucumber-tag-expressions (~> 2.0, >= 2.0.4)
38
- cucumber-create-meta (2.0.4)
39
- cucumber-messages (~> 13.1, >= 13.1.0)
40
- sys-uname (~> 1.2, >= 1.2.1)
41
- cucumber-cucumber-expressions (10.3.0)
42
- cucumber-gherkin (15.0.2)
43
- cucumber-messages (~> 13.0, >= 13.0.1)
44
- cucumber-html-formatter (9.0.0)
45
- cucumber-messages (~> 13.0, >= 13.0.1)
46
- cucumber-messages (13.2.1)
47
- protobuf-cucumber (~> 3.10, >= 3.10.8)
48
- cucumber-tag-expressions (2.0.4)
49
- cucumber-wire (4.0.1)
50
- cucumber-core (~> 8.0, >= 8.0.1)
51
- cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
52
- cucumber-messages (~> 13.0, >= 13.0.1)
53
- cuke_linter (1.2.0)
54
- cuke_modeler (>= 1.5, < 4.0)
55
- cuke_modeler (3.6.0)
56
- cucumber-gherkin (< 17.0)
57
- diff-lcs (1.4.4)
58
- em-websocket (0.5.2)
59
- eventmachine (>= 0.12.9)
60
- http_parser.rb (~> 0.6.0)
61
- eventmachine (1.2.7)
62
- eventmachine (1.2.7-java)
63
- ffi (1.13.1)
64
- ffi (1.13.1-java)
65
- formatador (0.2.5)
66
- forwardable-extended (2.6.0)
67
- gene_pool (1.5.0)
68
- concurrent-ruby (>= 1.0)
69
- guard (2.16.2)
70
- formatador (>= 0.2.4)
71
- listen (>= 2.7, < 4.0)
72
- lumberjack (>= 1.0.12, < 2.0)
73
- nenv (~> 0.1)
74
- notiffany (~> 0.0)
75
- pry (>= 0.9.12)
76
- shellany (~> 0.0)
77
- thor (>= 0.18.1)
78
- guard-compat (1.2.1)
79
- guard-shell (0.7.1)
80
- guard (>= 2.0.0)
81
- guard-compat (~> 1.0)
82
- guard-yard (2.2.1)
83
- guard (>= 1.1.0)
84
- yard (>= 0.7.0)
85
- http_parser.rb (0.6.0)
86
- http_parser.rb (0.6.0-java)
87
- httparty (0.18.1)
88
- mime-types (~> 3.0)
89
- multi_xml (>= 0.5.2)
90
- i18n (1.8.5)
91
- concurrent-ruby (~> 1.0)
92
- jekyll (4.2.0)
93
- addressable (~> 2.4)
94
- colorator (~> 1.0)
95
- em-websocket (~> 0.5)
96
- i18n (~> 1.0)
97
- jekyll-sass-converter (~> 2.0)
98
- jekyll-watch (~> 2.0)
99
- kramdown (~> 2.3)
100
- kramdown-parser-gfm (~> 1.0)
101
- liquid (~> 4.0)
102
- mercenary (~> 0.4.0)
103
- pathutil (~> 0.9)
104
- rouge (~> 3.0)
105
- safe_yaml (~> 1.0)
106
- terminal-table (~> 2.0)
107
- jekyll-sass-converter (2.1.0)
108
- sassc (> 2.0.1, < 3.0)
109
- jekyll-seo-tag (2.7.1)
110
- jekyll (>= 3.8, < 5.0)
111
- jekyll-watch (2.2.1)
112
- listen (~> 3.0)
113
- just-the-docs (0.3.3)
114
- jekyll (>= 3.8.5)
115
- jekyll-seo-tag (~> 2.0)
116
- rake (>= 12.3.1, < 13.1.0)
117
- kramdown (2.3.0)
118
- rexml
119
- kramdown-parser-gfm (1.1.0)
120
- kramdown (~> 2.0)
121
- liquid (4.0.3)
122
- listen (3.4.1)
123
- rb-fsevent (~> 0.10, >= 0.10.3)
124
- rb-inotify (~> 0.9, >= 0.9.10)
125
- lumberjack (1.2.8)
126
- mercenary (0.4.0)
127
- method_source (1.0.0)
128
- middleware (0.1.0)
129
- mime-types (3.3.1)
130
- mime-types-data (~> 3.2015)
131
- mime-types-data (3.2020.1104)
132
- minitest (5.14.2)
133
- multi_test (0.1.2)
134
- multi_xml (0.6.0)
135
- nenv (0.3.0)
136
- notiffany (0.1.3)
137
- nenv (~> 0.1)
138
- shellany (~> 0.0)
139
- parallel (1.20.1)
140
- parser (3.0.0.0)
141
- ast (~> 2.4.1)
142
- pastel (0.8.0)
143
- tty-color (~> 0.5)
144
- pathutil (0.16.2)
145
- forwardable-extended (~> 2.6)
146
- persistent_http (1.0.6)
147
- gene_pool (>= 1.3)
148
- persistent_httparty (0.1.2)
149
- httparty (~> 0.9)
150
- persistent_http (< 2)
151
- process_exists (0.2.0)
152
- protobuf-cucumber (3.10.8)
153
- activesupport (>= 3.2)
154
- middleware
155
- thor
156
- thread_safe
157
- pry (0.13.1)
158
- coderay (~> 1.1)
159
- method_source (~> 1.0)
160
- pry (0.13.1-java)
161
- coderay (~> 1.1)
162
- method_source (~> 1.0)
163
- spoon (~> 0.0)
164
- public_suffix (4.0.6)
165
- rainbow (3.0.0)
166
- rake (12.3.3)
167
- rb-fsevent (0.10.4)
168
- rb-inotify (0.10.1)
169
- ffi (~> 1.0)
170
- regexp_parser (2.0.3)
171
- rexml (3.2.4)
172
- rouge (3.26.0)
173
- rspec (3.10.0)
174
- rspec-core (~> 3.10.0)
175
- rspec-expectations (~> 3.10.0)
176
- rspec-mocks (~> 3.10.0)
177
- rspec-core (3.10.0)
178
- rspec-support (~> 3.10.0)
179
- rspec-expectations (3.10.0)
180
- diff-lcs (>= 1.2.0, < 2.0)
181
- rspec-support (~> 3.10.0)
182
- rspec-mocks (3.10.0)
183
- diff-lcs (>= 1.2.0, < 2.0)
184
- rspec-support (~> 3.10.0)
185
- rspec-support (3.10.0)
186
- rubocop (1.8.1)
187
- parallel (~> 1.10)
188
- parser (>= 3.0.0.0)
189
- rainbow (>= 2.2.2, < 4.0)
190
- regexp_parser (>= 1.8, < 3.0)
191
- rexml
192
- rubocop-ast (>= 1.2.0, < 2.0)
193
- ruby-progressbar (~> 1.7)
194
- unicode-display_width (>= 1.4.0, < 3.0)
195
- rubocop-ast (1.4.0)
196
- parser (>= 2.7.1.5)
197
- ruby-progressbar (1.11.0)
198
- safe_yaml (1.0.5)
199
- sassc (2.4.0)
200
- ffi (~> 1.9)
201
- shellany (0.0.1)
202
- spoon (0.0.6)
203
- ffi
204
- sys-uname (1.2.2)
205
- ffi (~> 1.1)
206
- terminal-table (2.0.0)
207
- unicode-display_width (~> 1.1, >= 1.1.1)
208
- thor (1.0.1)
209
- thread_safe (0.3.6)
210
- thread_safe (0.3.6-java)
211
- tty-color (0.6.0)
212
- tty-command (0.10.0)
213
- pastel (~> 0.8)
214
- tzinfo (1.2.8)
215
- thread_safe (~> 0.1)
216
- unicode-display_width (1.7.0)
217
- yaml-lint (0.0.10)
218
- yard (0.9.25)
219
- zeitwerk (2.4.1)
220
-
221
- PLATFORMS
222
- java
223
- ruby
224
-
225
- DEPENDENCIES
226
- cucumber
227
- cuke_linter (~> 1.2)
228
- guard-shell
229
- guard-yard
230
- httparty
231
- jekyll (~> 4.2)
232
- just-the-docs (~> 0.3)
233
- kramdown-parser-gfm
234
- openhab-scripting!
235
- persistent_httparty
236
- process_exists
237
- rake (~> 12.0)
238
- rspec
239
- rubocop (~> 1.8)
240
- tty-command
241
- yaml-lint
242
- yard
243
-
244
- BUNDLED WITH
245
- 2.2.4
data/Guardfile DELETED
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # A sample Guardfile
4
- # More info at https://github.com/guard/guard#readme
5
-
6
- ## Uncomment and set this to only include directories you want to watch
7
- # directories %w(app lib config test spec features) \
8
- # .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}
9
-
10
- ## Note: if you are using the `directories` clause above and you are not
11
- ## watching the project directory ('.'), then you will want to move
12
- ## the Guardfile to a watched dir and symlink it back, e.g.
13
- #
14
- # $ mkdir config
15
- # $ mv Guardfile config/
16
- # $ ln -s config/Guardfile .
17
- #
18
- # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
19
-
20
- group :docs do
21
- guard 'yard' do
22
- watch(%r{app/.+\.rb})
23
- watch(%r{lib/.+\.rb})
24
- watch(%r{ext/.+\.c})
25
- end
26
-
27
- # Add files and commands to this file, like the example:
28
- # watch(%r{file/path}) { `command(s)` }
29
- #
30
- guard :shell do
31
- watch(%r{lib/.+\.rb}) do |_modified|
32
- `yard stats --list-undoc`
33
- end
34
- end
35
- end