rooibos 0.5.0
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 +7 -0
- data/.builds/ruby-3.2.yml +51 -0
- data/.builds/ruby-3.3.yml +51 -0
- data/.builds/ruby-3.4.yml +51 -0
- data/.builds/ruby-4.0.0.yml +51 -0
- data/.pre-commit-config.yaml +16 -0
- data/.rubocop.yml +8 -0
- data/AGENTS.md +108 -0
- data/CHANGELOG.md +214 -0
- data/LICENSE +304 -0
- data/LICENSES/AGPL-3.0-or-later.txt +235 -0
- data/LICENSES/CC-BY-SA-4.0.txt +170 -0
- data/LICENSES/CC0-1.0.txt +121 -0
- data/LICENSES/LGPL-3.0-or-later.txt +304 -0
- data/LICENSES/MIT-0.txt +16 -0
- data/LICENSES/MIT.txt +18 -0
- data/README.md +183 -0
- data/REUSE.toml +24 -0
- data/Rakefile +16 -0
- data/Steepfile +13 -0
- data/doc/concepts/application_architecture.md +197 -0
- data/doc/concepts/application_testing.md +49 -0
- data/doc/concepts/async_work.md +164 -0
- data/doc/concepts/commands.md +530 -0
- data/doc/concepts/message_processing.md +51 -0
- data/doc/contributors/WIP/decomposition_strategies_analysis.md +258 -0
- data/doc/contributors/WIP/implementation_plan.md +409 -0
- data/doc/contributors/WIP/init_callable_proposal.md +344 -0
- data/doc/contributors/WIP/mvu_tea_implementations_research.md +373 -0
- data/doc/contributors/WIP/runtime_refactoring_status.md +47 -0
- data/doc/contributors/WIP/task.md +36 -0
- data/doc/contributors/WIP/v0.4.0_todo.md +468 -0
- data/doc/contributors/design/commands_and_outlets.md +214 -0
- data/doc/contributors/kit-no-outlet.md +238 -0
- data/doc/contributors/priorities.md +38 -0
- data/doc/custom.css +22 -0
- data/doc/getting_started/quickstart.md +56 -0
- data/doc/images/.gitkeep +0 -0
- data/doc/images/verify_readme_usage.png +0 -0
- data/doc/images/widget_cmd_exec.png +0 -0
- data/doc/index.md +25 -0
- data/examples/app_fractal_dashboard/README.md +60 -0
- data/examples/app_fractal_dashboard/app.rb +63 -0
- data/examples/app_fractal_dashboard/dashboard/base.rb +73 -0
- data/examples/app_fractal_dashboard/dashboard/update_helpers.rb +86 -0
- data/examples/app_fractal_dashboard/dashboard/update_manual.rb +87 -0
- data/examples/app_fractal_dashboard/dashboard/update_router.rb +43 -0
- data/examples/app_fractal_dashboard/fragments/custom_shell_input.rb +81 -0
- data/examples/app_fractal_dashboard/fragments/custom_shell_modal.rb +82 -0
- data/examples/app_fractal_dashboard/fragments/custom_shell_output.rb +90 -0
- data/examples/app_fractal_dashboard/fragments/disk_usage.rb +47 -0
- data/examples/app_fractal_dashboard/fragments/network_panel.rb +45 -0
- data/examples/app_fractal_dashboard/fragments/ping.rb +47 -0
- data/examples/app_fractal_dashboard/fragments/stats_panel.rb +45 -0
- data/examples/app_fractal_dashboard/fragments/system_info.rb +47 -0
- data/examples/app_fractal_dashboard/fragments/uptime.rb +47 -0
- data/examples/verify_readme_usage/README.md +54 -0
- data/examples/verify_readme_usage/app.rb +47 -0
- data/examples/widget_command_system/README.md +70 -0
- data/examples/widget_command_system/app.rb +132 -0
- data/exe/.gitkeep +0 -0
- data/lib/rooibos/command/all.rb +69 -0
- data/lib/rooibos/command/batch.rb +77 -0
- data/lib/rooibos/command/custom.rb +104 -0
- data/lib/rooibos/command/http.rb +192 -0
- data/lib/rooibos/command/lifecycle.rb +134 -0
- data/lib/rooibos/command/outlet.rb +157 -0
- data/lib/rooibos/command/wait.rb +80 -0
- data/lib/rooibos/command.rb +546 -0
- data/lib/rooibos/error.rb +55 -0
- data/lib/rooibos/message/all.rb +45 -0
- data/lib/rooibos/message/http_response.rb +61 -0
- data/lib/rooibos/message/system/batch.rb +61 -0
- data/lib/rooibos/message/system/stream.rb +67 -0
- data/lib/rooibos/message/timer.rb +46 -0
- data/lib/rooibos/message.rb +38 -0
- data/lib/rooibos/router.rb +403 -0
- data/lib/rooibos/runtime.rb +396 -0
- data/lib/rooibos/shortcuts.rb +49 -0
- data/lib/rooibos/test_helper.rb +56 -0
- data/lib/rooibos/version.rb +12 -0
- data/lib/rooibos.rb +121 -0
- data/mise.toml +8 -0
- data/rbs_collection.lock.yaml +108 -0
- data/rbs_collection.yaml +15 -0
- data/sig/concurrent.rbs +72 -0
- data/sig/examples/verify_readme_usage/app.rbs +19 -0
- data/sig/examples/widget_command_system/app.rbs +26 -0
- data/sig/open3.rbs +17 -0
- data/sig/rooibos/command.rbs +265 -0
- data/sig/rooibos/error.rbs +13 -0
- data/sig/rooibos/message.rbs +121 -0
- data/sig/rooibos/router.rbs +153 -0
- data/sig/rooibos/runtime.rbs +75 -0
- data/sig/rooibos/shortcuts.rbs +16 -0
- data/sig/rooibos/test_helper.rbs +10 -0
- data/sig/rooibos/version.rbs +8 -0
- data/sig/rooibos.rbs +46 -0
- data/tasks/example_viewer.html.erb +172 -0
- data/tasks/resources/build.yml.erb +53 -0
- data/tasks/resources/index.html.erb +44 -0
- data/tasks/resources/rubies.yml +7 -0
- data/tasks/steep.rake +11 -0
- data/vendor/goodcop/base.yml +1047 -0
- metadata +241 -0
metadata
ADDED
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rooibos
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.5.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Kerrick Long
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: ratatui_ruby
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 0.10.1
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 0.10.1
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: ostruct
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0.6'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0.6'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: concurrent-ruby
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '1.3'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '1.3'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: concurrent-ruby-edge
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0.7'
|
|
61
|
+
type: :runtime
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0.7'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: rdoc
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '7.0'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '7.0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: faker
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '3.5'
|
|
89
|
+
type: :development
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '3.5'
|
|
96
|
+
description: Rooibos - part of the RatatuiRuby TUI framework ecosystem
|
|
97
|
+
email:
|
|
98
|
+
- me@kerricklong.com
|
|
99
|
+
executables:
|
|
100
|
+
- ".gitkeep"
|
|
101
|
+
extensions: []
|
|
102
|
+
extra_rdoc_files: []
|
|
103
|
+
files:
|
|
104
|
+
- ".builds/ruby-3.2.yml"
|
|
105
|
+
- ".builds/ruby-3.3.yml"
|
|
106
|
+
- ".builds/ruby-3.4.yml"
|
|
107
|
+
- ".builds/ruby-4.0.0.yml"
|
|
108
|
+
- ".pre-commit-config.yaml"
|
|
109
|
+
- ".rubocop.yml"
|
|
110
|
+
- AGENTS.md
|
|
111
|
+
- CHANGELOG.md
|
|
112
|
+
- LICENSE
|
|
113
|
+
- LICENSES/AGPL-3.0-or-later.txt
|
|
114
|
+
- LICENSES/CC-BY-SA-4.0.txt
|
|
115
|
+
- LICENSES/CC0-1.0.txt
|
|
116
|
+
- LICENSES/LGPL-3.0-or-later.txt
|
|
117
|
+
- LICENSES/MIT-0.txt
|
|
118
|
+
- LICENSES/MIT.txt
|
|
119
|
+
- README.md
|
|
120
|
+
- REUSE.toml
|
|
121
|
+
- Rakefile
|
|
122
|
+
- Steepfile
|
|
123
|
+
- doc/concepts/application_architecture.md
|
|
124
|
+
- doc/concepts/application_testing.md
|
|
125
|
+
- doc/concepts/async_work.md
|
|
126
|
+
- doc/concepts/commands.md
|
|
127
|
+
- doc/concepts/message_processing.md
|
|
128
|
+
- doc/contributors/WIP/decomposition_strategies_analysis.md
|
|
129
|
+
- doc/contributors/WIP/implementation_plan.md
|
|
130
|
+
- doc/contributors/WIP/init_callable_proposal.md
|
|
131
|
+
- doc/contributors/WIP/mvu_tea_implementations_research.md
|
|
132
|
+
- doc/contributors/WIP/runtime_refactoring_status.md
|
|
133
|
+
- doc/contributors/WIP/task.md
|
|
134
|
+
- doc/contributors/WIP/v0.4.0_todo.md
|
|
135
|
+
- doc/contributors/design/commands_and_outlets.md
|
|
136
|
+
- doc/contributors/kit-no-outlet.md
|
|
137
|
+
- doc/contributors/priorities.md
|
|
138
|
+
- doc/custom.css
|
|
139
|
+
- doc/getting_started/quickstart.md
|
|
140
|
+
- doc/images/.gitkeep
|
|
141
|
+
- doc/images/verify_readme_usage.png
|
|
142
|
+
- doc/images/widget_cmd_exec.png
|
|
143
|
+
- doc/index.md
|
|
144
|
+
- examples/app_fractal_dashboard/README.md
|
|
145
|
+
- examples/app_fractal_dashboard/app.rb
|
|
146
|
+
- examples/app_fractal_dashboard/dashboard/base.rb
|
|
147
|
+
- examples/app_fractal_dashboard/dashboard/update_helpers.rb
|
|
148
|
+
- examples/app_fractal_dashboard/dashboard/update_manual.rb
|
|
149
|
+
- examples/app_fractal_dashboard/dashboard/update_router.rb
|
|
150
|
+
- examples/app_fractal_dashboard/fragments/custom_shell_input.rb
|
|
151
|
+
- examples/app_fractal_dashboard/fragments/custom_shell_modal.rb
|
|
152
|
+
- examples/app_fractal_dashboard/fragments/custom_shell_output.rb
|
|
153
|
+
- examples/app_fractal_dashboard/fragments/disk_usage.rb
|
|
154
|
+
- examples/app_fractal_dashboard/fragments/network_panel.rb
|
|
155
|
+
- examples/app_fractal_dashboard/fragments/ping.rb
|
|
156
|
+
- examples/app_fractal_dashboard/fragments/stats_panel.rb
|
|
157
|
+
- examples/app_fractal_dashboard/fragments/system_info.rb
|
|
158
|
+
- examples/app_fractal_dashboard/fragments/uptime.rb
|
|
159
|
+
- examples/verify_readme_usage/README.md
|
|
160
|
+
- examples/verify_readme_usage/app.rb
|
|
161
|
+
- examples/widget_command_system/README.md
|
|
162
|
+
- examples/widget_command_system/app.rb
|
|
163
|
+
- exe/.gitkeep
|
|
164
|
+
- lib/rooibos.rb
|
|
165
|
+
- lib/rooibos/command.rb
|
|
166
|
+
- lib/rooibos/command/all.rb
|
|
167
|
+
- lib/rooibos/command/batch.rb
|
|
168
|
+
- lib/rooibos/command/custom.rb
|
|
169
|
+
- lib/rooibos/command/http.rb
|
|
170
|
+
- lib/rooibos/command/lifecycle.rb
|
|
171
|
+
- lib/rooibos/command/outlet.rb
|
|
172
|
+
- lib/rooibos/command/wait.rb
|
|
173
|
+
- lib/rooibos/error.rb
|
|
174
|
+
- lib/rooibos/message.rb
|
|
175
|
+
- lib/rooibos/message/all.rb
|
|
176
|
+
- lib/rooibos/message/http_response.rb
|
|
177
|
+
- lib/rooibos/message/system/batch.rb
|
|
178
|
+
- lib/rooibos/message/system/stream.rb
|
|
179
|
+
- lib/rooibos/message/timer.rb
|
|
180
|
+
- lib/rooibos/router.rb
|
|
181
|
+
- lib/rooibos/runtime.rb
|
|
182
|
+
- lib/rooibos/shortcuts.rb
|
|
183
|
+
- lib/rooibos/test_helper.rb
|
|
184
|
+
- lib/rooibos/version.rb
|
|
185
|
+
- mise.toml
|
|
186
|
+
- rbs_collection.lock.yaml
|
|
187
|
+
- rbs_collection.yaml
|
|
188
|
+
- sig/concurrent.rbs
|
|
189
|
+
- sig/examples/verify_readme_usage/app.rbs
|
|
190
|
+
- sig/examples/widget_command_system/app.rbs
|
|
191
|
+
- sig/open3.rbs
|
|
192
|
+
- sig/rooibos.rbs
|
|
193
|
+
- sig/rooibos/command.rbs
|
|
194
|
+
- sig/rooibos/error.rbs
|
|
195
|
+
- sig/rooibos/message.rbs
|
|
196
|
+
- sig/rooibos/router.rbs
|
|
197
|
+
- sig/rooibos/runtime.rbs
|
|
198
|
+
- sig/rooibos/shortcuts.rbs
|
|
199
|
+
- sig/rooibos/test_helper.rbs
|
|
200
|
+
- sig/rooibos/version.rbs
|
|
201
|
+
- tasks/example_viewer.html.erb
|
|
202
|
+
- tasks/resources/build.yml.erb
|
|
203
|
+
- tasks/resources/index.html.erb
|
|
204
|
+
- tasks/resources/rubies.yml
|
|
205
|
+
- tasks/steep.rake
|
|
206
|
+
- vendor/goodcop/base.yml
|
|
207
|
+
homepage: https://sr.ht/~kerrick/ratatui_ruby/
|
|
208
|
+
licenses:
|
|
209
|
+
- LGPL-3.0-or-later
|
|
210
|
+
metadata:
|
|
211
|
+
allowed_push_host: https://rubygems.org
|
|
212
|
+
homepage_uri: https://sr.ht/~kerrick/ratatui_ruby/
|
|
213
|
+
bug_tracker_uri: https://todo.sr.ht/~kerrick/ratatui_ruby
|
|
214
|
+
mailing_list_uri: https://lists.sr.ht/~kerrick/ratatui_ruby-discuss
|
|
215
|
+
source_code_uri: https://git.sr.ht/~kerrick/rooibos
|
|
216
|
+
changelog_uri: https://git.sr.ht/~kerrick/rooibos/tree/stable/item/CHANGELOG.md
|
|
217
|
+
documentation_uri: https://git.sr.ht/~kerrick/rooibos/tree/HEAD/doc/index.md
|
|
218
|
+
wiki_uri: https://man.sr.ht/~kerrick/ratatui_ruby/
|
|
219
|
+
funding_uri: https://opencollective.com/ratatui
|
|
220
|
+
rubygems_mfa_required: 'true'
|
|
221
|
+
rdoc_options: []
|
|
222
|
+
require_paths:
|
|
223
|
+
- lib
|
|
224
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
225
|
+
requirements:
|
|
226
|
+
- - ">="
|
|
227
|
+
- !ruby/object:Gem::Version
|
|
228
|
+
version: 3.2.9
|
|
229
|
+
- - "<"
|
|
230
|
+
- !ruby/object:Gem::Version
|
|
231
|
+
version: '5'
|
|
232
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
233
|
+
requirements:
|
|
234
|
+
- - ">="
|
|
235
|
+
- !ruby/object:Gem::Version
|
|
236
|
+
version: '0'
|
|
237
|
+
requirements: []
|
|
238
|
+
rubygems_version: 4.0.3
|
|
239
|
+
specification_version: 4
|
|
240
|
+
summary: Part of the RatatuiRuby ecosystem
|
|
241
|
+
test_files: []
|