mensa 0.2.4 → 0.2.6
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/.devcontainer/Dockerfile +6 -2
- data/.devcontainer/compose.yaml +1 -1
- data/.devcontainer/devcontainer.json +31 -29
- data/.devcontainer/postCreate.sh +8 -0
- data/.devcontainer/postStart.sh +9 -0
- data/.gitignore +3 -1
- data/.zed/tasks.json +12 -0
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +155 -153
- data/Procfile +1 -1
- data/README.md +95 -60
- data/app/assets/stylesheets/mensa/application.css +14 -11
- data/app/components/mensa/add_filter/component.css +110 -5
- data/app/components/mensa/add_filter/component.html.slim +10 -12
- data/app/components/mensa/add_filter/component.rb +8 -2
- data/app/components/mensa/add_filter/component_controller.js +697 -85
- data/app/components/mensa/cell/component.css +9 -0
- data/app/components/mensa/column_customizer/component.css +40 -0
- data/app/components/mensa/column_customizer/component.html.slim +14 -0
- data/app/components/mensa/column_customizer/component.rb +13 -0
- data/app/components/mensa/column_customizer/component_controller.js +383 -0
- data/app/components/mensa/control_bar/component.css +127 -4
- data/app/components/mensa/control_bar/component.html.slim +41 -14
- data/app/components/mensa/control_bar/component.rb +2 -6
- data/app/components/mensa/empty_state/component.css +20 -0
- data/app/components/mensa/empty_state/component.html.slim +7 -0
- data/app/components/mensa/empty_state/component.rb +18 -0
- data/app/components/mensa/filter_pill/component.css +23 -0
- data/app/components/mensa/filter_pill/component.html.slim +9 -0
- data/app/components/mensa/filter_pill/component.rb +24 -0
- data/app/components/mensa/filter_pill/component_controller.js +52 -0
- data/app/components/mensa/filter_pill_list/component.css +63 -0
- data/app/components/mensa/filter_pill_list/component.html.slim +11 -0
- data/app/components/mensa/{filter_list → filter_pill_list}/component.rb +1 -1
- data/app/components/mensa/filter_pill_list/component_controller.js +749 -0
- data/app/components/mensa/header/component.css +41 -43
- data/app/components/mensa/header/component.html.slim +7 -7
- data/app/components/mensa/header/component.rb +1 -1
- data/app/components/mensa/row_action/component.html.slim +2 -2
- data/app/components/mensa/row_action/component.rb +1 -1
- data/app/components/mensa/search/component.css +68 -9
- data/app/components/mensa/search/component.html.slim +19 -15
- data/app/components/mensa/search/component.rb +1 -1
- data/app/components/mensa/search/component_controller.js +39 -49
- data/app/components/mensa/selection/component_controller.js +147 -0
- data/app/components/mensa/table/component.css +28 -0
- data/app/components/mensa/table/component.html.slim +9 -6
- data/app/components/mensa/table/component.rb +1 -0
- data/app/components/mensa/table/component_controller.js +524 -76
- data/app/components/mensa/table_row/component.css +6 -0
- data/app/components/mensa/table_row/component.html.slim +8 -3
- data/app/components/mensa/table_row/component.rb +1 -1
- data/app/components/mensa/view/component.css +97 -29
- data/app/components/mensa/view/component.html.slim +23 -10
- data/app/components/mensa/view/component.rb +5 -0
- data/app/components/mensa/views/component.css +106 -13
- data/app/components/mensa/views/component.html.slim +51 -17
- data/app/components/mensa/views/component_controller.js +245 -20
- data/app/controllers/mensa/application_controller.rb +1 -1
- data/app/controllers/mensa/tables/batch_actions_controller.rb +24 -0
- data/app/controllers/mensa/tables/exports_controller.rb +96 -0
- data/app/controllers/mensa/tables/filters_controller.rb +6 -2
- data/app/controllers/mensa/tables/views_controller.rb +108 -0
- data/app/controllers/mensa/tables_controller.rb +5 -14
- data/app/helpers/mensa/application_helper.rb +4 -1
- data/app/javascript/mensa/application.js +2 -2
- data/app/javascript/mensa/controllers/application_controller.js +5 -21
- data/app/javascript/mensa/controllers/index.js +16 -7
- data/app/jobs/mensa/export_job.rb +77 -85
- data/app/models/mensa/export.rb +93 -0
- data/app/tables/mensa/action.rb +3 -1
- data/app/tables/mensa/base.rb +103 -17
- data/app/tables/mensa/batch_action.rb +27 -0
- data/app/tables/mensa/cell.rb +21 -6
- data/app/tables/mensa/column.rb +30 -25
- data/app/tables/mensa/config/action_dsl.rb +1 -1
- data/app/tables/mensa/config/batch_dsl.rb +13 -0
- data/app/tables/mensa/config/column_dsl.rb +1 -0
- data/app/tables/mensa/config/dsl_logic.rb +8 -4
- data/app/tables/mensa/config/filter_dsl.rb +4 -1
- data/app/tables/mensa/config/render_dsl.rb +1 -1
- data/app/tables/mensa/config/table_dsl.rb +14 -4
- data/app/tables/mensa/config/view_dsl.rb +2 -0
- data/app/tables/mensa/config_readers.rb +34 -3
- data/app/tables/mensa/filter.rb +94 -14
- data/app/tables/mensa/row.rb +1 -1
- data/app/tables/mensa/scope.rb +25 -13
- data/app/views/mensa/exports/_badge.html.slim +5 -0
- data/app/views/mensa/exports/_dialog.html.slim +42 -0
- data/app/views/mensa/exports/_list.html.slim +29 -0
- data/app/views/mensa/tables/filters/show.turbo_stream.slim +34 -6
- data/app/views/mensa/tables/show.html.slim +2 -0
- data/app/views/mensa/tables/show.turbo_stream.slim +1 -1
- data/app/views/mensa/tables/views/create.turbo_stream.slim +11 -0
- data/app/views/mensa/tables/views/destroy.turbo_stream.slim +11 -0
- data/app/views/mensa/tables/views/update.turbo_stream.slim +11 -0
- data/bin/setup +1 -1
- data/config/locales/en.yml +45 -1
- data/config/locales/nl.yml +46 -1
- data/config/routes.rb +7 -0
- data/db/migrate/20260604120000_create_mensa_exports.rb +25 -0
- data/docs/columns.png +0 -0
- data/docs/export.png +0 -0
- data/docs/filters.png +0 -0
- data/docs/table.png +0 -0
- data/lib/generators/mensa/tailwind_config_generator.rb +3 -3
- data/lib/generators/mensa/templates/config/initializers/mensa.rb +1 -1
- data/lib/mensa/configuration.rb +35 -15
- data/lib/mensa/engine.rb +15 -10
- data/lib/mensa/version.rb +1 -1
- data/lib/mensa.rb +2 -2
- data/lib/tasks/mensa_tasks.rake +1 -1
- data/mensa.gemspec +3 -2
- data/mise.toml +8 -0
- data/package-lock.json +0 -7
- metadata +60 -15
- data/app/components/mensa/filter/component_controller.js +0 -12
- data/app/components/mensa/filter_list/component.css +0 -14
- data/app/components/mensa/filter_list/component.html.slim +0 -14
- data/app/components/mensa/filter_list/component_controller.js +0 -14
- /data/{rubocop.yml → .rubocop.yml} +0 -0
data/Gemfile.lock
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mensa (0.2.
|
|
5
|
-
|
|
4
|
+
mensa (0.2.5)
|
|
5
|
+
csv
|
|
6
6
|
importmap-rails
|
|
7
7
|
pagy (>= 43)
|
|
8
8
|
rails (>= 7.1)
|
|
9
|
+
rubyzip (>= 1.2.2)
|
|
9
10
|
slim
|
|
10
11
|
stimulus-rails
|
|
11
12
|
tailwindcss-rails (~> 3.3)
|
|
@@ -16,29 +17,31 @@ PATH
|
|
|
16
17
|
GEM
|
|
17
18
|
remote: https://rubygems.org/
|
|
18
19
|
specs:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
action_text-trix (2.1.19)
|
|
21
|
+
railties
|
|
22
|
+
actioncable (8.1.3)
|
|
23
|
+
actionpack (= 8.1.3)
|
|
24
|
+
activesupport (= 8.1.3)
|
|
22
25
|
nio4r (~> 2.0)
|
|
23
26
|
websocket-driver (>= 0.6.1)
|
|
24
27
|
zeitwerk (~> 2.6)
|
|
25
|
-
actionmailbox (8.
|
|
26
|
-
actionpack (= 8.
|
|
27
|
-
activejob (= 8.
|
|
28
|
-
activerecord (= 8.
|
|
29
|
-
activestorage (= 8.
|
|
30
|
-
activesupport (= 8.
|
|
28
|
+
actionmailbox (8.1.3)
|
|
29
|
+
actionpack (= 8.1.3)
|
|
30
|
+
activejob (= 8.1.3)
|
|
31
|
+
activerecord (= 8.1.3)
|
|
32
|
+
activestorage (= 8.1.3)
|
|
33
|
+
activesupport (= 8.1.3)
|
|
31
34
|
mail (>= 2.8.0)
|
|
32
|
-
actionmailer (8.
|
|
33
|
-
actionpack (= 8.
|
|
34
|
-
actionview (= 8.
|
|
35
|
-
activejob (= 8.
|
|
36
|
-
activesupport (= 8.
|
|
35
|
+
actionmailer (8.1.3)
|
|
36
|
+
actionpack (= 8.1.3)
|
|
37
|
+
actionview (= 8.1.3)
|
|
38
|
+
activejob (= 8.1.3)
|
|
39
|
+
activesupport (= 8.1.3)
|
|
37
40
|
mail (>= 2.8.0)
|
|
38
41
|
rails-dom-testing (~> 2.2)
|
|
39
|
-
actionpack (8.
|
|
40
|
-
actionview (= 8.
|
|
41
|
-
activesupport (= 8.
|
|
42
|
+
actionpack (8.1.3)
|
|
43
|
+
actionview (= 8.1.3)
|
|
44
|
+
activesupport (= 8.1.3)
|
|
42
45
|
nokogiri (>= 1.8.5)
|
|
43
46
|
rack (>= 2.2.4)
|
|
44
47
|
rack-session (>= 1.0.1)
|
|
@@ -46,53 +49,53 @@ GEM
|
|
|
46
49
|
rails-dom-testing (~> 2.2)
|
|
47
50
|
rails-html-sanitizer (~> 1.6)
|
|
48
51
|
useragent (~> 0.16)
|
|
49
|
-
actiontext (8.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
actiontext (8.1.3)
|
|
53
|
+
action_text-trix (~> 2.1.15)
|
|
54
|
+
actionpack (= 8.1.3)
|
|
55
|
+
activerecord (= 8.1.3)
|
|
56
|
+
activestorage (= 8.1.3)
|
|
57
|
+
activesupport (= 8.1.3)
|
|
54
58
|
globalid (>= 0.6.0)
|
|
55
59
|
nokogiri (>= 1.8.5)
|
|
56
|
-
actionview (8.
|
|
57
|
-
activesupport (= 8.
|
|
60
|
+
actionview (8.1.3)
|
|
61
|
+
activesupport (= 8.1.3)
|
|
58
62
|
builder (~> 3.1)
|
|
59
63
|
erubi (~> 1.11)
|
|
60
64
|
rails-dom-testing (~> 2.2)
|
|
61
65
|
rails-html-sanitizer (~> 1.6)
|
|
62
|
-
activejob (8.
|
|
63
|
-
activesupport (= 8.
|
|
66
|
+
activejob (8.1.3)
|
|
67
|
+
activesupport (= 8.1.3)
|
|
64
68
|
globalid (>= 0.3.6)
|
|
65
|
-
activemodel (8.
|
|
66
|
-
activesupport (= 8.
|
|
67
|
-
activerecord (8.
|
|
68
|
-
activemodel (= 8.
|
|
69
|
-
activesupport (= 8.
|
|
69
|
+
activemodel (8.1.3)
|
|
70
|
+
activesupport (= 8.1.3)
|
|
71
|
+
activerecord (8.1.3)
|
|
72
|
+
activemodel (= 8.1.3)
|
|
73
|
+
activesupport (= 8.1.3)
|
|
70
74
|
timeout (>= 0.4.0)
|
|
71
|
-
activestorage (8.
|
|
72
|
-
actionpack (= 8.
|
|
73
|
-
activejob (= 8.
|
|
74
|
-
activerecord (= 8.
|
|
75
|
-
activesupport (= 8.
|
|
75
|
+
activestorage (8.1.3)
|
|
76
|
+
actionpack (= 8.1.3)
|
|
77
|
+
activejob (= 8.1.3)
|
|
78
|
+
activerecord (= 8.1.3)
|
|
79
|
+
activesupport (= 8.1.3)
|
|
76
80
|
marcel (~> 1.0)
|
|
77
|
-
activesupport (8.
|
|
81
|
+
activesupport (8.1.3)
|
|
78
82
|
base64
|
|
79
|
-
benchmark (>= 0.3)
|
|
80
83
|
bigdecimal
|
|
81
84
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
82
85
|
connection_pool (>= 2.2.5)
|
|
83
86
|
drb
|
|
84
87
|
i18n (>= 1.6, < 2)
|
|
88
|
+
json
|
|
85
89
|
logger (>= 1.4.2)
|
|
86
90
|
minitest (>= 5.1)
|
|
87
91
|
securerandom (>= 0.3)
|
|
88
92
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
89
93
|
uri (>= 0.13.1)
|
|
90
|
-
addressable (2.
|
|
91
|
-
public_suffix (>= 2.0.2, <
|
|
94
|
+
addressable (2.9.0)
|
|
95
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
92
96
|
ast (2.4.3)
|
|
93
97
|
base64 (0.3.0)
|
|
94
|
-
|
|
95
|
-
bigdecimal (3.3.1)
|
|
98
|
+
bigdecimal (4.1.2)
|
|
96
99
|
browser (6.2.0)
|
|
97
100
|
builder (3.3.0)
|
|
98
101
|
capybara (3.40.0)
|
|
@@ -104,49 +107,42 @@ GEM
|
|
|
104
107
|
rack-test (>= 0.6.3)
|
|
105
108
|
regexp_parser (>= 1.5, < 3.0)
|
|
106
109
|
xpath (~> 3.2)
|
|
107
|
-
caxlsx (4.4.0)
|
|
108
|
-
htmlentities (~> 4.3, >= 4.3.4)
|
|
109
|
-
marcel (~> 1.0)
|
|
110
|
-
nokogiri (~> 1.10, >= 1.10.4)
|
|
111
|
-
rubyzip (>= 2.4, < 4)
|
|
112
|
-
caxlsx_rails (0.6.4)
|
|
113
|
-
actionpack (>= 3.1)
|
|
114
|
-
caxlsx (>= 3.0)
|
|
115
110
|
coderay (1.1.3)
|
|
116
|
-
concurrent-ruby (1.3.
|
|
117
|
-
connection_pool (
|
|
111
|
+
concurrent-ruby (1.3.6)
|
|
112
|
+
connection_pool (3.0.2)
|
|
118
113
|
crass (1.0.6)
|
|
119
|
-
|
|
120
|
-
|
|
114
|
+
csv (3.3.5)
|
|
115
|
+
date (3.5.1)
|
|
116
|
+
debug (1.11.1)
|
|
121
117
|
irb (~> 1.10)
|
|
122
118
|
reline (>= 0.3.8)
|
|
123
119
|
diffy (3.4.4)
|
|
124
120
|
drb (2.2.3)
|
|
125
|
-
erb (
|
|
121
|
+
erb (6.0.4)
|
|
126
122
|
erubi (1.13.1)
|
|
127
123
|
globalid (1.3.0)
|
|
128
124
|
activesupport (>= 6.1)
|
|
129
|
-
|
|
130
|
-
i18n (1.14.7)
|
|
125
|
+
i18n (1.14.8)
|
|
131
126
|
concurrent-ruby (~> 1.0)
|
|
132
|
-
importmap-rails (2.2.
|
|
127
|
+
importmap-rails (2.2.3)
|
|
133
128
|
actionpack (>= 6.0.0)
|
|
134
129
|
activesupport (>= 6.0.0)
|
|
135
130
|
railties (>= 6.0.0)
|
|
136
|
-
io-console (0.8.
|
|
137
|
-
irb (1.
|
|
131
|
+
io-console (0.8.2)
|
|
132
|
+
irb (1.18.0)
|
|
138
133
|
pp (>= 0.6.0)
|
|
134
|
+
prism (>= 1.3.0)
|
|
139
135
|
rdoc (>= 4.0.0)
|
|
140
136
|
reline (>= 0.4.2)
|
|
141
|
-
json (2.
|
|
142
|
-
jsonb_accessor (1.4)
|
|
137
|
+
json (2.19.8)
|
|
138
|
+
jsonb_accessor (1.4.2)
|
|
143
139
|
activerecord (>= 6.1)
|
|
144
140
|
activesupport (>= 6.1)
|
|
145
141
|
pg (>= 0.18.1)
|
|
146
142
|
language_server-protocol (3.17.0.5)
|
|
147
143
|
lint_roller (1.1.0)
|
|
148
144
|
logger (1.7.0)
|
|
149
|
-
loofah (2.
|
|
145
|
+
loofah (2.25.1)
|
|
150
146
|
crass (~> 1.0.2)
|
|
151
147
|
nokogiri (>= 1.12.0)
|
|
152
148
|
mail (2.9.0)
|
|
@@ -155,12 +151,14 @@ GEM
|
|
|
155
151
|
net-imap
|
|
156
152
|
net-pop
|
|
157
153
|
net-smtp
|
|
158
|
-
marcel (1.1
|
|
154
|
+
marcel (1.2.1)
|
|
159
155
|
matrix (0.4.3)
|
|
160
156
|
method_source (1.1.0)
|
|
161
157
|
mini_mime (1.1.5)
|
|
162
|
-
minitest (
|
|
163
|
-
|
|
158
|
+
minitest (6.0.6)
|
|
159
|
+
drb (~> 2.0)
|
|
160
|
+
prism (~> 1.5)
|
|
161
|
+
net-imap (0.6.4)
|
|
164
162
|
date
|
|
165
163
|
net-protocol
|
|
166
164
|
net-pop (0.1.2)
|
|
@@ -170,89 +168,91 @@ GEM
|
|
|
170
168
|
net-smtp (0.5.1)
|
|
171
169
|
net-protocol
|
|
172
170
|
nio4r (2.7.5)
|
|
173
|
-
nokogiri (1.
|
|
171
|
+
nokogiri (1.19.3-aarch64-linux-gnu)
|
|
174
172
|
racc (~> 1.4)
|
|
175
|
-
nokogiri (1.
|
|
173
|
+
nokogiri (1.19.3-aarch64-linux-musl)
|
|
176
174
|
racc (~> 1.4)
|
|
177
|
-
nokogiri (1.
|
|
175
|
+
nokogiri (1.19.3-arm-linux-gnu)
|
|
178
176
|
racc (~> 1.4)
|
|
179
|
-
nokogiri (1.
|
|
177
|
+
nokogiri (1.19.3-arm-linux-musl)
|
|
180
178
|
racc (~> 1.4)
|
|
181
|
-
nokogiri (1.
|
|
179
|
+
nokogiri (1.19.3-arm64-darwin)
|
|
182
180
|
racc (~> 1.4)
|
|
183
|
-
nokogiri (1.
|
|
181
|
+
nokogiri (1.19.3-x86_64-darwin)
|
|
184
182
|
racc (~> 1.4)
|
|
185
|
-
nokogiri (1.
|
|
183
|
+
nokogiri (1.19.3-x86_64-linux-gnu)
|
|
186
184
|
racc (~> 1.4)
|
|
187
|
-
nokogiri (1.
|
|
185
|
+
nokogiri (1.19.3-x86_64-linux-musl)
|
|
188
186
|
racc (~> 1.4)
|
|
189
187
|
overmind (2.5.1)
|
|
190
188
|
overmind (2.5.1-aarch64-linux)
|
|
191
189
|
overmind (2.5.1-arm-linux)
|
|
192
190
|
overmind (2.5.1-arm64-darwin)
|
|
193
191
|
overmind (2.5.1-x86_64-darwin)
|
|
194
|
-
pagy (43.
|
|
192
|
+
pagy (43.5.5)
|
|
195
193
|
json
|
|
194
|
+
uri
|
|
196
195
|
yaml
|
|
197
|
-
parallel (1.
|
|
198
|
-
parser (3.3.
|
|
196
|
+
parallel (1.28.0)
|
|
197
|
+
parser (3.3.11.1)
|
|
199
198
|
ast (~> 2.4.1)
|
|
200
199
|
racc
|
|
201
|
-
pg (1.6.
|
|
202
|
-
pg (1.6.
|
|
203
|
-
pg (1.6.
|
|
204
|
-
pg (1.6.
|
|
205
|
-
pg (1.6.
|
|
206
|
-
pg (1.6.
|
|
207
|
-
pg (1.6.
|
|
200
|
+
pg (1.6.3)
|
|
201
|
+
pg (1.6.3-aarch64-linux)
|
|
202
|
+
pg (1.6.3-aarch64-linux-musl)
|
|
203
|
+
pg (1.6.3-arm64-darwin)
|
|
204
|
+
pg (1.6.3-x86_64-darwin)
|
|
205
|
+
pg (1.6.3-x86_64-linux)
|
|
206
|
+
pg (1.6.3-x86_64-linux-musl)
|
|
208
207
|
pp (0.6.3)
|
|
209
208
|
prettyprint
|
|
210
209
|
prettyprint (0.2.0)
|
|
211
|
-
prism (1.
|
|
212
|
-
pry (0.
|
|
210
|
+
prism (1.9.0)
|
|
211
|
+
pry (0.16.0)
|
|
213
212
|
coderay (~> 1.1)
|
|
214
213
|
method_source (~> 1.0)
|
|
215
|
-
|
|
214
|
+
reline (>= 0.6.0)
|
|
215
|
+
psych (5.4.0)
|
|
216
216
|
date
|
|
217
217
|
stringio
|
|
218
|
-
public_suffix (
|
|
219
|
-
puma (
|
|
218
|
+
public_suffix (7.0.5)
|
|
219
|
+
puma (8.0.2)
|
|
220
220
|
nio4r (~> 2.0)
|
|
221
221
|
racc (1.8.1)
|
|
222
|
-
rack (3.2.
|
|
222
|
+
rack (3.2.6)
|
|
223
223
|
rack-mini-profiler (4.0.1)
|
|
224
224
|
rack (>= 1.2.0)
|
|
225
|
-
rack-session (2.1.
|
|
225
|
+
rack-session (2.1.2)
|
|
226
226
|
base64 (>= 0.1.0)
|
|
227
227
|
rack (>= 3.0.0)
|
|
228
228
|
rack-test (2.2.0)
|
|
229
229
|
rack (>= 1.3)
|
|
230
|
-
rackup (2.
|
|
230
|
+
rackup (2.3.1)
|
|
231
231
|
rack (>= 3)
|
|
232
|
-
rails (8.
|
|
233
|
-
actioncable (= 8.
|
|
234
|
-
actionmailbox (= 8.
|
|
235
|
-
actionmailer (= 8.
|
|
236
|
-
actionpack (= 8.
|
|
237
|
-
actiontext (= 8.
|
|
238
|
-
actionview (= 8.
|
|
239
|
-
activejob (= 8.
|
|
240
|
-
activemodel (= 8.
|
|
241
|
-
activerecord (= 8.
|
|
242
|
-
activestorage (= 8.
|
|
243
|
-
activesupport (= 8.
|
|
232
|
+
rails (8.1.3)
|
|
233
|
+
actioncable (= 8.1.3)
|
|
234
|
+
actionmailbox (= 8.1.3)
|
|
235
|
+
actionmailer (= 8.1.3)
|
|
236
|
+
actionpack (= 8.1.3)
|
|
237
|
+
actiontext (= 8.1.3)
|
|
238
|
+
actionview (= 8.1.3)
|
|
239
|
+
activejob (= 8.1.3)
|
|
240
|
+
activemodel (= 8.1.3)
|
|
241
|
+
activerecord (= 8.1.3)
|
|
242
|
+
activestorage (= 8.1.3)
|
|
243
|
+
activesupport (= 8.1.3)
|
|
244
244
|
bundler (>= 1.15.0)
|
|
245
|
-
railties (= 8.
|
|
245
|
+
railties (= 8.1.3)
|
|
246
246
|
rails-dom-testing (2.3.0)
|
|
247
247
|
activesupport (>= 5.0.0)
|
|
248
248
|
minitest
|
|
249
249
|
nokogiri (>= 1.6)
|
|
250
|
-
rails-html-sanitizer (1.
|
|
251
|
-
loofah (~> 2.
|
|
250
|
+
rails-html-sanitizer (1.7.0)
|
|
251
|
+
loofah (~> 2.25)
|
|
252
252
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
253
|
-
railties (8.
|
|
254
|
-
actionpack (= 8.
|
|
255
|
-
activesupport (= 8.
|
|
253
|
+
railties (8.1.3)
|
|
254
|
+
actionpack (= 8.1.3)
|
|
255
|
+
activesupport (= 8.1.3)
|
|
256
256
|
irb (~> 1.13)
|
|
257
257
|
rackup (>= 1.0.0)
|
|
258
258
|
rake (>= 12.2)
|
|
@@ -260,18 +260,20 @@ GEM
|
|
|
260
260
|
tsort (>= 0.2)
|
|
261
261
|
zeitwerk (~> 2.6)
|
|
262
262
|
rainbow (3.1.1)
|
|
263
|
-
rake (13.
|
|
264
|
-
rbs (
|
|
263
|
+
rake (13.4.2)
|
|
264
|
+
rbs (4.0.2)
|
|
265
265
|
logger
|
|
266
|
-
|
|
266
|
+
prism (>= 1.6.0)
|
|
267
|
+
tsort
|
|
268
|
+
rdoc (7.2.0)
|
|
267
269
|
erb
|
|
268
270
|
psych (>= 4.0.0)
|
|
269
271
|
tsort
|
|
270
|
-
regexp_parser (2.
|
|
272
|
+
regexp_parser (2.12.0)
|
|
271
273
|
reline (0.6.3)
|
|
272
274
|
io-console (~> 0.5)
|
|
273
275
|
rexml (3.4.4)
|
|
274
|
-
rubocop (1.
|
|
276
|
+
rubocop (1.84.2)
|
|
275
277
|
json (~> 2.3)
|
|
276
278
|
language_server-protocol (~> 3.17.0.2)
|
|
277
279
|
lint_roller (~> 1.1.0)
|
|
@@ -279,31 +281,31 @@ GEM
|
|
|
279
281
|
parser (>= 3.3.0.2)
|
|
280
282
|
rainbow (>= 2.2.2, < 4.0)
|
|
281
283
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
282
|
-
rubocop-ast (>= 1.
|
|
284
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
283
285
|
ruby-progressbar (~> 1.7)
|
|
284
286
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
285
|
-
rubocop-ast (1.
|
|
287
|
+
rubocop-ast (1.49.1)
|
|
286
288
|
parser (>= 3.3.7.2)
|
|
287
|
-
prism (~> 1.
|
|
288
|
-
rubocop-performance (1.
|
|
289
|
+
prism (~> 1.7)
|
|
290
|
+
rubocop-performance (1.26.1)
|
|
289
291
|
lint_roller (~> 1.1)
|
|
290
292
|
rubocop (>= 1.75.0, < 2.0)
|
|
291
|
-
rubocop-ast (>= 1.
|
|
292
|
-
rubocop-rails (2.
|
|
293
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
294
|
+
rubocop-rails (2.35.3)
|
|
293
295
|
activesupport (>= 4.2.0)
|
|
294
296
|
lint_roller (~> 1.1)
|
|
295
297
|
rack (>= 1.1)
|
|
296
298
|
rubocop (>= 1.75.0, < 2.0)
|
|
297
299
|
rubocop-ast (>= 1.44.0, < 2.0)
|
|
298
|
-
ruby-lsp (0.26.
|
|
300
|
+
ruby-lsp (0.26.9)
|
|
299
301
|
language_server-protocol (~> 3.17.0)
|
|
300
302
|
prism (>= 1.2, < 2.0)
|
|
301
303
|
rbs (>= 3, < 5)
|
|
302
304
|
ruby-lsp-rails (0.4.8)
|
|
303
305
|
ruby-lsp (>= 0.26.0, < 0.27.0)
|
|
304
306
|
ruby-progressbar (1.13.0)
|
|
305
|
-
rubyzip (3.
|
|
306
|
-
satis (2.3.
|
|
307
|
+
rubyzip (3.3.1)
|
|
308
|
+
satis (2.3.5)
|
|
307
309
|
browser
|
|
308
310
|
diffy
|
|
309
311
|
importmap-rails
|
|
@@ -314,7 +316,7 @@ GEM
|
|
|
314
316
|
turbo-rails
|
|
315
317
|
view_component
|
|
316
318
|
securerandom (0.4.1)
|
|
317
|
-
selenium-webdriver (4.
|
|
319
|
+
selenium-webdriver (4.44.0)
|
|
318
320
|
base64 (~> 0.2)
|
|
319
321
|
logger (~> 1.4)
|
|
320
322
|
rexml (~> 3.2, >= 3.2.5)
|
|
@@ -331,56 +333,56 @@ GEM
|
|
|
331
333
|
actionpack (>= 6.1)
|
|
332
334
|
activesupport (>= 6.1)
|
|
333
335
|
sprockets (>= 3.0.0)
|
|
334
|
-
sqlite3 (2.
|
|
335
|
-
sqlite3 (2.
|
|
336
|
-
sqlite3 (2.
|
|
337
|
-
sqlite3 (2.
|
|
338
|
-
sqlite3 (2.
|
|
339
|
-
sqlite3 (2.
|
|
340
|
-
sqlite3 (2.
|
|
341
|
-
sqlite3 (2.
|
|
342
|
-
standard (1.
|
|
336
|
+
sqlite3 (2.9.4-aarch64-linux-gnu)
|
|
337
|
+
sqlite3 (2.9.4-aarch64-linux-musl)
|
|
338
|
+
sqlite3 (2.9.4-arm-linux-gnu)
|
|
339
|
+
sqlite3 (2.9.4-arm-linux-musl)
|
|
340
|
+
sqlite3 (2.9.4-arm64-darwin)
|
|
341
|
+
sqlite3 (2.9.4-x86_64-darwin)
|
|
342
|
+
sqlite3 (2.9.4-x86_64-linux-gnu)
|
|
343
|
+
sqlite3 (2.9.4-x86_64-linux-musl)
|
|
344
|
+
standard (1.54.0)
|
|
343
345
|
language_server-protocol (~> 3.17.0.2)
|
|
344
346
|
lint_roller (~> 1.0)
|
|
345
|
-
rubocop (~> 1.
|
|
347
|
+
rubocop (~> 1.84.0)
|
|
346
348
|
standard-custom (~> 1.0.0)
|
|
347
349
|
standard-performance (~> 1.8)
|
|
348
350
|
standard-custom (1.0.2)
|
|
349
351
|
lint_roller (~> 1.0)
|
|
350
352
|
rubocop (~> 1.50)
|
|
351
|
-
standard-performance (1.
|
|
353
|
+
standard-performance (1.9.0)
|
|
352
354
|
lint_roller (~> 1.1)
|
|
353
|
-
rubocop-performance (~> 1.
|
|
355
|
+
rubocop-performance (~> 1.26.0)
|
|
354
356
|
stimulus-rails (1.3.4)
|
|
355
357
|
railties (>= 6.0.0)
|
|
356
|
-
stringio (3.
|
|
358
|
+
stringio (3.2.0)
|
|
357
359
|
tailwindcss-rails (3.3.2)
|
|
358
360
|
railties (>= 7.0.0)
|
|
359
361
|
tailwindcss-ruby (~> 3.0)
|
|
360
|
-
tailwindcss-ruby (3.4.
|
|
361
|
-
tailwindcss-ruby (3.4.
|
|
362
|
-
tailwindcss-ruby (3.4.
|
|
363
|
-
tailwindcss-ruby (3.4.
|
|
364
|
-
tailwindcss-ruby (3.4.
|
|
362
|
+
tailwindcss-ruby (3.4.19-aarch64-linux)
|
|
363
|
+
tailwindcss-ruby (3.4.19-arm-linux)
|
|
364
|
+
tailwindcss-ruby (3.4.19-arm64-darwin)
|
|
365
|
+
tailwindcss-ruby (3.4.19-x86_64-darwin)
|
|
366
|
+
tailwindcss-ruby (3.4.19-x86_64-linux)
|
|
365
367
|
temple (0.10.4)
|
|
366
368
|
textacular (5.7.0)
|
|
367
369
|
activerecord (>= 5.0)
|
|
368
|
-
thor (1.
|
|
369
|
-
tilt (2.
|
|
370
|
-
timeout (0.
|
|
370
|
+
thor (1.5.0)
|
|
371
|
+
tilt (2.7.0)
|
|
372
|
+
timeout (0.6.1)
|
|
371
373
|
tsort (0.2.0)
|
|
372
|
-
turbo-rails (2.0.
|
|
374
|
+
turbo-rails (2.0.23)
|
|
373
375
|
actionpack (>= 7.1.0)
|
|
374
376
|
railties (>= 7.1.0)
|
|
375
377
|
tzinfo (2.0.6)
|
|
376
378
|
concurrent-ruby (~> 1.0)
|
|
377
379
|
unicode-display_width (3.2.0)
|
|
378
380
|
unicode-emoji (~> 4.1)
|
|
379
|
-
unicode-emoji (4.
|
|
381
|
+
unicode-emoji (4.2.0)
|
|
380
382
|
uri (1.1.1)
|
|
381
383
|
useragent (0.16.11)
|
|
382
|
-
view_component (3.
|
|
383
|
-
activesupport (>= 5.2.0, < 8.
|
|
384
|
+
view_component (3.24.0)
|
|
385
|
+
activesupport (>= 5.2.0, < 8.2)
|
|
384
386
|
concurrent-ruby (~> 1)
|
|
385
387
|
method_source (~> 1.0)
|
|
386
388
|
websocket (1.2.11)
|
|
@@ -391,7 +393,7 @@ GEM
|
|
|
391
393
|
xpath (3.2.0)
|
|
392
394
|
nokogiri (~> 1.8)
|
|
393
395
|
yaml (0.4.0)
|
|
394
|
-
zeitwerk (2.
|
|
396
|
+
zeitwerk (2.8.2)
|
|
395
397
|
|
|
396
398
|
PLATFORMS
|
|
397
399
|
aarch64-linux-gnu
|
data/Procfile
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
web: bin/rails server -p 3000 -b 0.0.0.0
|
|
2
|
-
css: cd test/dummy && bin/rails tailwindcss:watch
|
|
2
|
+
css: cd test/dummy && bin/rails tailwindcss:config && bin/rails tailwindcss:watch
|