mensa 0.2.5 → 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.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/.devcontainer/Dockerfile +6 -2
  3. data/.devcontainer/compose.yaml +1 -1
  4. data/.devcontainer/devcontainer.json +31 -29
  5. data/.devcontainer/postCreate.sh +8 -0
  6. data/.devcontainer/postStart.sh +9 -0
  7. data/.gitignore +3 -1
  8. data/.zed/tasks.json +12 -0
  9. data/Gemfile.lock +155 -153
  10. data/Procfile +1 -1
  11. data/README.md +85 -60
  12. data/app/assets/stylesheets/mensa/application.css +14 -11
  13. data/app/components/mensa/add_filter/component.css +110 -5
  14. data/app/components/mensa/add_filter/component.html.slim +10 -12
  15. data/app/components/mensa/add_filter/component.rb +7 -1
  16. data/app/components/mensa/add_filter/component_controller.js +697 -83
  17. data/app/components/mensa/cell/component.css +9 -0
  18. data/app/components/mensa/column_customizer/component.css +40 -0
  19. data/app/components/mensa/column_customizer/component.html.slim +14 -0
  20. data/app/components/mensa/column_customizer/component.rb +13 -0
  21. data/app/components/mensa/column_customizer/component_controller.js +383 -0
  22. data/app/components/mensa/control_bar/component.css +127 -4
  23. data/app/components/mensa/control_bar/component.html.slim +41 -14
  24. data/app/components/mensa/control_bar/component.rb +0 -4
  25. data/app/components/mensa/empty_state/component.css +20 -0
  26. data/app/components/mensa/empty_state/component.html.slim +7 -0
  27. data/app/components/mensa/empty_state/component.rb +18 -0
  28. data/app/components/mensa/filter_pill/component.css +23 -0
  29. data/app/components/mensa/filter_pill/component.html.slim +9 -6
  30. data/app/components/mensa/filter_pill/component.rb +9 -0
  31. data/app/components/mensa/filter_pill/component_controller.js +50 -10
  32. data/app/components/mensa/filter_pill_list/component.css +58 -9
  33. data/app/components/mensa/filter_pill_list/component.html.slim +11 -8
  34. data/app/components/mensa/filter_pill_list/component_controller.js +747 -48
  35. data/app/components/mensa/header/component.css +41 -43
  36. data/app/components/mensa/header/component.html.slim +7 -7
  37. data/app/components/mensa/row_action/component.html.slim +2 -2
  38. data/app/components/mensa/search/component.css +68 -9
  39. data/app/components/mensa/search/component.html.slim +19 -15
  40. data/app/components/mensa/search/component_controller.js +39 -49
  41. data/app/components/mensa/selection/component_controller.js +147 -0
  42. data/app/components/mensa/table/component.css +28 -0
  43. data/app/components/mensa/table/component.html.slim +9 -6
  44. data/app/components/mensa/table/component.rb +1 -0
  45. data/app/components/mensa/table/component_controller.js +524 -88
  46. data/app/components/mensa/table_row/component.css +6 -0
  47. data/app/components/mensa/table_row/component.html.slim +8 -3
  48. data/app/components/mensa/view/component.css +97 -29
  49. data/app/components/mensa/view/component.html.slim +23 -10
  50. data/app/components/mensa/view/component.rb +5 -0
  51. data/app/components/mensa/views/component.css +106 -13
  52. data/app/components/mensa/views/component.html.slim +51 -17
  53. data/app/components/mensa/views/component_controller.js +245 -20
  54. data/app/controllers/mensa/tables/batch_actions_controller.rb +24 -0
  55. data/app/controllers/mensa/tables/exports_controller.rb +96 -0
  56. data/app/controllers/mensa/tables/filters_controller.rb +4 -1
  57. data/app/controllers/mensa/tables/views_controller.rb +108 -0
  58. data/app/controllers/mensa/tables_controller.rb +3 -6
  59. data/app/helpers/mensa/application_helper.rb +4 -0
  60. data/app/javascript/mensa/application.js +2 -2
  61. data/app/javascript/mensa/controllers/index.js +13 -4
  62. data/app/jobs/mensa/export_job.rb +77 -84
  63. data/app/models/mensa/export.rb +93 -0
  64. data/app/tables/mensa/base.rb +103 -12
  65. data/app/tables/mensa/batch_action.rb +27 -0
  66. data/app/tables/mensa/cell.rb +15 -0
  67. data/app/tables/mensa/column.rb +15 -2
  68. data/app/tables/mensa/config/batch_dsl.rb +13 -0
  69. data/app/tables/mensa/config/column_dsl.rb +1 -0
  70. data/app/tables/mensa/config/filter_dsl.rb +4 -1
  71. data/app/tables/mensa/config/render_dsl.rb +1 -1
  72. data/app/tables/mensa/config/table_dsl.rb +12 -5
  73. data/app/tables/mensa/config/view_dsl.rb +2 -0
  74. data/app/tables/mensa/config_readers.rb +20 -1
  75. data/app/tables/mensa/filter.rb +86 -3
  76. data/app/tables/mensa/scope.rb +24 -12
  77. data/app/views/mensa/exports/_badge.html.slim +5 -0
  78. data/app/views/mensa/exports/_dialog.html.slim +42 -0
  79. data/app/views/mensa/exports/_list.html.slim +29 -0
  80. data/app/views/mensa/tables/filters/show.turbo_stream.slim +35 -8
  81. data/app/views/mensa/tables/views/create.turbo_stream.slim +11 -0
  82. data/app/views/mensa/tables/views/destroy.turbo_stream.slim +11 -0
  83. data/app/views/mensa/tables/views/update.turbo_stream.slim +11 -0
  84. data/config/locales/en.yml +44 -0
  85. data/config/locales/nl.yml +45 -0
  86. data/config/routes.rb +7 -0
  87. data/db/migrate/20260604120000_create_mensa_exports.rb +25 -0
  88. data/docs/columns.png +0 -0
  89. data/docs/export.png +0 -0
  90. data/docs/filters.png +0 -0
  91. data/docs/table.png +0 -0
  92. data/lib/mensa/configuration.rb +33 -12
  93. data/lib/mensa/engine.rb +7 -2
  94. data/lib/mensa/version.rb +1 -1
  95. data/mensa.gemspec +2 -1
  96. data/mise.toml +8 -0
  97. data/package-lock.json +0 -7
  98. metadata +50 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa2c03e8e00ac20aa0a68e6a19b43de5f4262bd7601bf32a51679d9b8bbe7541
4
- data.tar.gz: b94c0a5f9a3242fde92cffd8ee19a3add4ef60f95cd594f80cc53c02f525e2f7
3
+ metadata.gz: 3b2c5a9217245753b104b14bc70f33f6f7594728422502a038cf065d3a476405
4
+ data.tar.gz: 899f8d8c2d5dc663cfef2e449b3ebee1201ee50af21058297a821327188b3ee6
5
5
  SHA512:
6
- metadata.gz: 623466449dc736362fed892249981bb374b1f76b541272e65205bebbea1b2b20d2f4f0b94d700040849bc297f874a4f1041197b3fb09e69a147649b87920ae56
7
- data.tar.gz: 872085623dfbde8c840a2c4fe03f0105c23c46c60c62b00af26c34373731008a163004fa24c668dd49682d93618e0b113c2686e2a138868d08dcdef49572cc60
6
+ metadata.gz: e17a9a703e1be7f84c7972beea41f0f2ec45801601afa65b30a3d17757e7c7c5bc94b4dbaf87a38692f65caf1ed3d3be08eb4d51167bd90ff5f2717bdfb9d339
7
+ data.tar.gz: 85cb357c58d4fdee8bb3e885856b6496ff6a04341c4472b3c7b455430482169b81864c437c944d203a6971e109c5f48ffc79393b4ab0d79ab8cdc3d6321ae76f
@@ -1,3 +1,7 @@
1
1
  # Make sure RUBY_VERSION matches the Ruby version in .ruby-version
2
- ARG RUBY_VERSION=3.4.1
3
- FROM ghcr.io/rails/devcontainer/images/ruby:$RUBY_VERSION
2
+ ARG RUBY_VERSION=3.4.7
3
+ FROM ghcr.io/rails/devcontainer/images/ruby:3.4.7
4
+
5
+ # Default value to allow debug server to serve content over GitHub Codespace's port forwarding service
6
+ # The value is a comma-separated list of allowed domains
7
+ ENV RAILS_DEVELOPMENT_HOSTS=".githubpreview.dev,.preview.app.github.dev,.app.github.dev"
@@ -27,7 +27,7 @@ services:
27
27
  - RUBY_YJIT_ENABLE=1
28
28
 
29
29
  selenium:
30
- image: selenium/standalone-chromium
30
+ image: selenium/standalone-firefox
31
31
  restart: unless-stopped
32
32
 
33
33
  redis:
@@ -1,35 +1,37 @@
1
1
  // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
2
  // README at: https://github.com/devcontainers/templates/tree/main/src/ruby
3
3
  {
4
- "name": "mensa",
5
- "dockerComposeFile": "compose.yaml",
6
- "service": "app",
7
- "workspaceFolder": "/workspaces/mensa",
8
- // Features to add to the dev container. More info: https://containers.dev/features.
9
- "features": {
10
- "ghcr.io/devcontainers/features/github-cli:1": { },
11
- "ghcr.io/rails/devcontainer/features/activestorage": { },
12
- "ghcr.io/rails/devcontainer/features/postgres-client": {
13
- "version": "17"
4
+ "name": "mensa",
5
+ "dockerComposeFile": "compose.yaml",
6
+ "service": "app",
7
+ "workspaceFolder": "/workspaces/mensa",
8
+ // Features to add to the dev container. More info: https://containers.dev/features.
9
+ "features": {
10
+ "ghcr.io/devcontainers/features/github-cli:1": {},
11
+ "ghcr.io/rails/devcontainer/features/activestorage": {},
12
+ "ghcr.io/rails/devcontainer/features/postgres-client": {
13
+ "version": "17"
14
+ },
15
+ "ghcr.io/devcontainers/features/node:1": {},
16
+ "ghcr.io/duduribeiro/devcontainer-features/tmux:1": {}
14
17
  },
15
- "ghcr.io/devcontainers/features/node:1": { },
16
- "ghcr.io/duduribeiro/devcontainer-features/tmux:1": { }
17
- },
18
- "containerEnv": {
19
- "CAPYBARA_SERVER_PORT": "45678",
20
- "SELENIUM_HOST": "selenium",
21
- "DB_HOST": "postgres"
22
- },
23
- "forwardPorts": [
24
- 3000,
25
- 5432
26
- ],
27
- "customizations": {
28
- "vscode": {
29
- "extensions": [
30
- "Shopify.ruby-lsp"
31
- ]
18
+ "mounts": [
19
+ "source=/run/host-services/ssh-auth.sock,target=/ssh-agent,type=bind",
20
+ "source=${localEnv:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"
21
+ ],
22
+ "postCreateCommand": ".devcontainer/postCreate.sh",
23
+ "postStartCommand": ".devcontainer/postStart.sh",
24
+ "containerEnv": {
25
+ "CAPYBARA_SERVER_PORT": "45678",
26
+ "SELENIUM_URL": "http://host.docker.internal:4444/",
27
+ "VISUAL": "vi",
28
+ "DB_HOST": "postgres",
29
+ "SSH_AUTH_SOCK": "/ssh-agent"
30
+ },
31
+ "build": {
32
+ "args": {
33
+ "RUBY_VERSION": "3.4.7"
34
+ },
35
+ "dockerfile": "./devcontainer/Dockerfile"
32
36
  }
33
- },
34
- "postCreateCommand": "bin/setup"
35
37
  }
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+ MISE=$(which mise)
4
+
5
+ eval "$($MISE activate bash)"
6
+ $MISE trust
7
+ $MISE install
8
+ sudo chmod 666 /ssh-agent
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env bash
2
+ set -e
3
+
4
+ MISE=$(which mise)
5
+ eval "$($MISE activate bash)"
6
+
7
+ npm install
8
+ bundle install
9
+ rake db:prepare
data/.gitignore CHANGED
@@ -19,4 +19,6 @@ app/assets/builds
19
19
  test/dummy/config/tailwind.config.js
20
20
  .envrc
21
21
 
22
- **/**/.DS_Store
22
+ **/**/.DS_Store
23
+ mise.toml
24
+ todo.md
data/.zed/tasks.json ADDED
@@ -0,0 +1,12 @@
1
+ [
2
+ {
3
+ "label": "Rails server",
4
+ "command": "bin/rails server -p 3000 -b 0.0.0.0",
5
+ "tags": ["rails"]
6
+ },
7
+ {
8
+ "label": "CSS",
9
+ "command": "cd test/dummy && bin/rails tailwindcss:config && bin/rails tailwindcss:watch",
10
+ "tags": ["rails"]
11
+ }
12
+ ]
data/Gemfile.lock CHANGED
@@ -1,11 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mensa (0.2.4)
5
- caxlsx_rails (~> 0)
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
- actioncable (8.0.4)
20
- actionpack (= 8.0.4)
21
- activesupport (= 8.0.4)
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.0.4)
26
- actionpack (= 8.0.4)
27
- activejob (= 8.0.4)
28
- activerecord (= 8.0.4)
29
- activestorage (= 8.0.4)
30
- activesupport (= 8.0.4)
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.0.4)
33
- actionpack (= 8.0.4)
34
- actionview (= 8.0.4)
35
- activejob (= 8.0.4)
36
- activesupport (= 8.0.4)
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.0.4)
40
- actionview (= 8.0.4)
41
- activesupport (= 8.0.4)
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.0.4)
50
- actionpack (= 8.0.4)
51
- activerecord (= 8.0.4)
52
- activestorage (= 8.0.4)
53
- activesupport (= 8.0.4)
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.0.4)
57
- activesupport (= 8.0.4)
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.0.4)
63
- activesupport (= 8.0.4)
66
+ activejob (8.1.3)
67
+ activesupport (= 8.1.3)
64
68
  globalid (>= 0.3.6)
65
- activemodel (8.0.4)
66
- activesupport (= 8.0.4)
67
- activerecord (8.0.4)
68
- activemodel (= 8.0.4)
69
- activesupport (= 8.0.4)
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.0.4)
72
- actionpack (= 8.0.4)
73
- activejob (= 8.0.4)
74
- activerecord (= 8.0.4)
75
- activesupport (= 8.0.4)
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.0.4)
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.8.7)
91
- public_suffix (>= 2.0.2, < 7.0)
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
- benchmark (0.5.0)
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.5)
117
- connection_pool (2.5.4)
111
+ concurrent-ruby (1.3.6)
112
+ connection_pool (3.0.2)
118
113
  crass (1.0.6)
119
- date (3.5.0)
120
- debug (1.11.0)
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 (6.0.0)
121
+ erb (6.0.4)
126
122
  erubi (1.13.1)
127
123
  globalid (1.3.0)
128
124
  activesupport (>= 6.1)
129
- htmlentities (4.3.4)
130
- i18n (1.14.7)
125
+ i18n (1.14.8)
131
126
  concurrent-ruby (~> 1.0)
132
- importmap-rails (2.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.1)
137
- irb (1.15.3)
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.16.0)
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.24.1)
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.0)
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 (5.26.1)
163
- net-imap (0.5.12)
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.18.10-aarch64-linux-gnu)
171
+ nokogiri (1.19.3-aarch64-linux-gnu)
174
172
  racc (~> 1.4)
175
- nokogiri (1.18.10-aarch64-linux-musl)
173
+ nokogiri (1.19.3-aarch64-linux-musl)
176
174
  racc (~> 1.4)
177
- nokogiri (1.18.10-arm-linux-gnu)
175
+ nokogiri (1.19.3-arm-linux-gnu)
178
176
  racc (~> 1.4)
179
- nokogiri (1.18.10-arm-linux-musl)
177
+ nokogiri (1.19.3-arm-linux-musl)
180
178
  racc (~> 1.4)
181
- nokogiri (1.18.10-arm64-darwin)
179
+ nokogiri (1.19.3-arm64-darwin)
182
180
  racc (~> 1.4)
183
- nokogiri (1.18.10-x86_64-darwin)
181
+ nokogiri (1.19.3-x86_64-darwin)
184
182
  racc (~> 1.4)
185
- nokogiri (1.18.10-x86_64-linux-gnu)
183
+ nokogiri (1.19.3-x86_64-linux-gnu)
186
184
  racc (~> 1.4)
187
- nokogiri (1.18.10-x86_64-linux-musl)
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.0.2)
192
+ pagy (43.5.5)
195
193
  json
194
+ uri
196
195
  yaml
197
- parallel (1.27.0)
198
- parser (3.3.10.0)
196
+ parallel (1.28.0)
197
+ parser (3.3.11.1)
199
198
  ast (~> 2.4.1)
200
199
  racc
201
- pg (1.6.2)
202
- pg (1.6.2-aarch64-linux)
203
- pg (1.6.2-aarch64-linux-musl)
204
- pg (1.6.2-arm64-darwin)
205
- pg (1.6.2-x86_64-darwin)
206
- pg (1.6.2-x86_64-linux)
207
- pg (1.6.2-x86_64-linux-musl)
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.6.0)
212
- pry (0.15.2)
210
+ prism (1.9.0)
211
+ pry (0.16.0)
213
212
  coderay (~> 1.1)
214
213
  method_source (~> 1.0)
215
- psych (5.2.6)
214
+ reline (>= 0.6.0)
215
+ psych (5.4.0)
216
216
  date
217
217
  stringio
218
- public_suffix (6.0.2)
219
- puma (7.1.0)
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.4)
222
+ rack (3.2.6)
223
223
  rack-mini-profiler (4.0.1)
224
224
  rack (>= 1.2.0)
225
- rack-session (2.1.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.2.1)
230
+ rackup (2.3.1)
231
231
  rack (>= 3)
232
- rails (8.0.4)
233
- actioncable (= 8.0.4)
234
- actionmailbox (= 8.0.4)
235
- actionmailer (= 8.0.4)
236
- actionpack (= 8.0.4)
237
- actiontext (= 8.0.4)
238
- actionview (= 8.0.4)
239
- activejob (= 8.0.4)
240
- activemodel (= 8.0.4)
241
- activerecord (= 8.0.4)
242
- activestorage (= 8.0.4)
243
- activesupport (= 8.0.4)
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.0.4)
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.6.2)
251
- loofah (~> 2.21)
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.0.4)
254
- actionpack (= 8.0.4)
255
- activesupport (= 8.0.4)
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.3.1)
264
- rbs (3.9.5)
263
+ rake (13.4.2)
264
+ rbs (4.0.2)
265
265
  logger
266
- rdoc (6.15.1)
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.11.3)
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.80.2)
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.46.0, < 2.0)
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.48.0)
287
+ rubocop-ast (1.49.1)
286
288
  parser (>= 3.3.7.2)
287
- prism (~> 1.4)
288
- rubocop-performance (1.25.0)
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.38.0, < 2.0)
292
- rubocop-rails (2.33.4)
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.2)
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.2.2)
306
- satis (2.3.0)
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.38.0)
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.8.0-aarch64-linux-gnu)
335
- sqlite3 (2.8.0-aarch64-linux-musl)
336
- sqlite3 (2.8.0-arm-linux-gnu)
337
- sqlite3 (2.8.0-arm-linux-musl)
338
- sqlite3 (2.8.0-arm64-darwin)
339
- sqlite3 (2.8.0-x86_64-darwin)
340
- sqlite3 (2.8.0-x86_64-linux-gnu)
341
- sqlite3 (2.8.0-x86_64-linux-musl)
342
- standard (1.51.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.80.2)
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.8.0)
353
+ standard-performance (1.9.0)
352
354
  lint_roller (~> 1.1)
353
- rubocop-performance (~> 1.25.0)
355
+ rubocop-performance (~> 1.26.0)
354
356
  stimulus-rails (1.3.4)
355
357
  railties (>= 6.0.0)
356
- stringio (3.1.8)
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.17-aarch64-linux)
361
- tailwindcss-ruby (3.4.17-arm-linux)
362
- tailwindcss-ruby (3.4.17-arm64-darwin)
363
- tailwindcss-ruby (3.4.17-x86_64-darwin)
364
- tailwindcss-ruby (3.4.17-x86_64-linux)
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.4.0)
369
- tilt (2.6.1)
370
- timeout (0.4.4)
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.20)
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.1.0)
381
+ unicode-emoji (4.2.0)
380
382
  uri (1.1.1)
381
383
  useragent (0.16.11)
382
- view_component (3.23.2)
383
- activesupport (>= 5.2.0, < 8.1)
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.7.3)
396
+ zeitwerk (2.8.2)
395
397
 
396
398
  PLATFORMS
397
399
  aarch64-linux-gnu