plutonium 0.33.1 → 0.34.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.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/# Plutonium: The pre-alpha demo.md +4 -2
  3. data/.claude/skills/assets/SKILL.md +416 -0
  4. data/.claude/skills/connect-resource/SKILL.md +112 -0
  5. data/.claude/skills/controller/SKILL.md +302 -0
  6. data/.claude/skills/create-resource/SKILL.md +240 -0
  7. data/.claude/skills/definition/SKILL.md +218 -0
  8. data/.claude/skills/definition-actions/SKILL.md +386 -0
  9. data/.claude/skills/definition-fields/SKILL.md +474 -0
  10. data/.claude/skills/definition-query/SKILL.md +334 -0
  11. data/.claude/skills/forms/SKILL.md +439 -0
  12. data/.claude/skills/installation/SKILL.md +300 -0
  13. data/.claude/skills/interaction/SKILL.md +382 -0
  14. data/.claude/skills/model/SKILL.md +267 -0
  15. data/.claude/skills/model-features/SKILL.md +286 -0
  16. data/.claude/skills/nested-resources/SKILL.md +274 -0
  17. data/.claude/skills/package/SKILL.md +191 -0
  18. data/.claude/skills/policy/SKILL.md +352 -0
  19. data/.claude/skills/portal/SKILL.md +400 -0
  20. data/.claude/skills/resource/SKILL.md +281 -0
  21. data/.claude/skills/rodauth/SKILL.md +452 -0
  22. data/.claude/skills/views/SKILL.md +563 -0
  23. data/Appraisals +46 -4
  24. data/CHANGELOG.md +32 -1
  25. data/app/assets/plutonium.css +2 -2
  26. data/config/brakeman.ignore +239 -0
  27. data/config/initializers/action_policy.rb +1 -1
  28. data/docs/.vitepress/config.ts +132 -47
  29. data/docs/concepts/architecture.md +226 -0
  30. data/docs/concepts/auto-detection.md +254 -0
  31. data/docs/concepts/index.md +61 -0
  32. data/docs/concepts/packages-portals.md +304 -0
  33. data/docs/concepts/resources.md +224 -0
  34. data/docs/cookbook/blog.md +412 -0
  35. data/docs/cookbook/index.md +289 -0
  36. data/docs/cookbook/saas.md +481 -0
  37. data/docs/getting-started/index.md +56 -0
  38. data/docs/getting-started/installation.md +146 -0
  39. data/docs/getting-started/tutorial/01-setup.md +118 -0
  40. data/docs/getting-started/tutorial/02-first-resource.md +180 -0
  41. data/docs/getting-started/tutorial/03-authentication.md +246 -0
  42. data/docs/getting-started/tutorial/04-authorization.md +170 -0
  43. data/docs/getting-started/tutorial/05-custom-actions.md +202 -0
  44. data/docs/getting-started/tutorial/06-nested-resources.md +147 -0
  45. data/docs/getting-started/tutorial/07-customizing-ui.md +254 -0
  46. data/docs/getting-started/tutorial/index.md +64 -0
  47. data/docs/guides/adding-resources.md +420 -0
  48. data/docs/guides/authentication.md +551 -0
  49. data/docs/guides/authorization.md +468 -0
  50. data/docs/guides/creating-packages.md +380 -0
  51. data/docs/guides/custom-actions.md +523 -0
  52. data/docs/guides/index.md +45 -0
  53. data/docs/guides/multi-tenancy.md +302 -0
  54. data/docs/guides/nested-resources.md +411 -0
  55. data/docs/guides/search-filtering.md +266 -0
  56. data/docs/guides/theming.md +321 -0
  57. data/docs/index.md +67 -26
  58. data/docs/public/CLAUDE.md +64 -21
  59. data/docs/reference/assets/index.md +496 -0
  60. data/docs/reference/controller/index.md +363 -0
  61. data/docs/reference/definition/actions.md +400 -0
  62. data/docs/reference/definition/fields.md +350 -0
  63. data/docs/reference/definition/index.md +252 -0
  64. data/docs/reference/definition/query.md +342 -0
  65. data/docs/reference/generators/index.md +469 -0
  66. data/docs/reference/index.md +49 -0
  67. data/docs/reference/interaction/index.md +445 -0
  68. data/docs/reference/model/features.md +248 -0
  69. data/docs/reference/model/index.md +219 -0
  70. data/docs/reference/policy/index.md +385 -0
  71. data/docs/reference/portal/index.md +382 -0
  72. data/docs/reference/views/forms.md +396 -0
  73. data/docs/reference/views/index.md +479 -0
  74. data/gemfiles/rails_7.gemfile +9 -2
  75. data/gemfiles/rails_7.gemfile.lock +146 -111
  76. data/gemfiles/rails_8.0.gemfile +20 -0
  77. data/gemfiles/rails_8.0.gemfile.lock +417 -0
  78. data/gemfiles/rails_8.1.gemfile +20 -0
  79. data/gemfiles/rails_8.1.gemfile.lock +419 -0
  80. data/lib/generators/pu/gem/dotenv/templates/.env +2 -0
  81. data/lib/generators/pu/gem/dotenv/templates/config/initializers/001_ensure_required_env.rb +3 -1
  82. data/lib/generators/pu/lib/plutonium_generators/model_generator_base.rb +13 -16
  83. data/lib/generators/pu/pkg/portal/USAGE +65 -0
  84. data/lib/generators/pu/pkg/portal/portal_generator.rb +22 -9
  85. data/lib/generators/pu/res/conn/USAGE +71 -0
  86. data/lib/generators/pu/res/model/USAGE +106 -110
  87. data/lib/generators/pu/res/model/templates/model.rb.tt +6 -2
  88. data/lib/generators/pu/res/scaffold/USAGE +85 -0
  89. data/lib/generators/pu/rodauth/install_generator.rb +2 -6
  90. data/lib/generators/pu/rodauth/templates/config/initializers/url_options.rb +17 -0
  91. data/lib/generators/pu/skills/sync/USAGE +14 -0
  92. data/lib/generators/pu/skills/sync/sync_generator.rb +66 -0
  93. data/lib/plutonium/action_policy/sti_policy_lookup.rb +1 -1
  94. data/lib/plutonium/core/controller.rb +2 -2
  95. data/lib/plutonium/interaction/base.rb +1 -0
  96. data/lib/plutonium/package/engine.rb +2 -2
  97. data/lib/plutonium/query/adhoc_block.rb +6 -2
  98. data/lib/plutonium/query/model_scope.rb +1 -1
  99. data/lib/plutonium/railtie.rb +4 -0
  100. data/lib/plutonium/resource/controllers/crud_actions/index_action.rb +1 -1
  101. data/lib/plutonium/resource/query_object.rb +38 -8
  102. data/lib/plutonium/ui/table/components/scopes_bar.rb +39 -34
  103. data/lib/plutonium/version.rb +1 -1
  104. data/lib/tasks/release.rake +19 -4
  105. data/package.json +1 -1
  106. metadata +76 -39
  107. data/brakeman.ignore +0 -28
  108. data/docs/api-examples.md +0 -49
  109. data/docs/guide/claude-code-guide.md +0 -74
  110. data/docs/guide/deep-dive/authorization.md +0 -189
  111. data/docs/guide/deep-dive/multitenancy.md +0 -256
  112. data/docs/guide/deep-dive/resources.md +0 -390
  113. data/docs/guide/getting-started/01-installation.md +0 -165
  114. data/docs/guide/index.md +0 -28
  115. data/docs/guide/introduction/01-what-is-plutonium.md +0 -211
  116. data/docs/guide/introduction/02-core-concepts.md +0 -440
  117. data/docs/guide/tutorial/01-project-setup.md +0 -75
  118. data/docs/guide/tutorial/02-creating-a-feature-package.md +0 -45
  119. data/docs/guide/tutorial/03-defining-resources.md +0 -90
  120. data/docs/guide/tutorial/04-creating-a-portal.md +0 -101
  121. data/docs/guide/tutorial/05-customizing-the-ui.md +0 -128
  122. data/docs/guide/tutorial/06-adding-custom-actions.md +0 -101
  123. data/docs/guide/tutorial/07-implementing-authorization.md +0 -90
  124. data/docs/markdown-examples.md +0 -85
  125. data/docs/modules/action.md +0 -244
  126. data/docs/modules/authentication.md +0 -236
  127. data/docs/modules/configuration.md +0 -599
  128. data/docs/modules/controller.md +0 -443
  129. data/docs/modules/core.md +0 -316
  130. data/docs/modules/definition.md +0 -1308
  131. data/docs/modules/display.md +0 -759
  132. data/docs/modules/form.md +0 -495
  133. data/docs/modules/generator.md +0 -400
  134. data/docs/modules/index.md +0 -167
  135. data/docs/modules/interaction.md +0 -642
  136. data/docs/modules/package.md +0 -151
  137. data/docs/modules/policy.md +0 -176
  138. data/docs/modules/portal.md +0 -710
  139. data/docs/modules/query.md +0 -297
  140. data/docs/modules/resource_record.md +0 -618
  141. data/docs/modules/routing.md +0 -690
  142. data/docs/modules/table.md +0 -301
  143. data/docs/modules/ui.md +0 -631
@@ -1,24 +1,23 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- plutonium (0.17.0)
4
+ plutonium (0.33.1)
5
5
  action_policy (~> 0.7.0)
6
- dry-initializer (~> 3.1)
7
6
  listen (~> 3.8)
8
7
  pagy (~> 9.0)
9
- phlex (~> 1.11)
8
+ phlex (~> 2.0)
10
9
  phlex-rails
11
- phlex-slotable
10
+ phlex-slotable (>= 1.0.0)
12
11
  phlex-tabler_icons
13
- phlexi-display
14
- phlexi-form
15
- phlexi-menu
16
- phlexi-table
12
+ phlexi-display (>= 0.2.0)
13
+ phlexi-field (>= 0.2.0)
14
+ phlexi-form (>= 0.10.0)
15
+ phlexi-menu (>= 0.4.0)
16
+ phlexi-table (>= 0.2.0)
17
17
  rabl (~> 0.16.1)
18
- rails (>= 7.1, < 8.0)
18
+ rails (>= 7.2)
19
19
  redcarpet
20
20
  semantic_range (~> 3.0)
21
- simple_form (~> 5.3)
22
21
  tailwind_merge
23
22
  tty-prompt (~> 0.23.1)
24
23
  zeitwerk
@@ -28,83 +27,79 @@ GEM
28
27
  specs:
29
28
  action_policy (0.7.3)
30
29
  ruby-next-core (>= 1.0)
31
- actioncable (7.1.5.1)
32
- actionpack (= 7.1.5.1)
33
- activesupport (= 7.1.5.1)
30
+ actioncable (7.2.3)
31
+ actionpack (= 7.2.3)
32
+ activesupport (= 7.2.3)
34
33
  nio4r (~> 2.0)
35
34
  websocket-driver (>= 0.6.1)
36
35
  zeitwerk (~> 2.6)
37
- actionmailbox (7.1.5.1)
38
- actionpack (= 7.1.5.1)
39
- activejob (= 7.1.5.1)
40
- activerecord (= 7.1.5.1)
41
- activestorage (= 7.1.5.1)
42
- activesupport (= 7.1.5.1)
43
- mail (>= 2.7.1)
44
- net-imap
45
- net-pop
46
- net-smtp
47
- actionmailer (7.1.5.1)
48
- actionpack (= 7.1.5.1)
49
- actionview (= 7.1.5.1)
50
- activejob (= 7.1.5.1)
51
- activesupport (= 7.1.5.1)
52
- mail (~> 2.5, >= 2.5.4)
53
- net-imap
54
- net-pop
55
- net-smtp
36
+ actionmailbox (7.2.3)
37
+ actionpack (= 7.2.3)
38
+ activejob (= 7.2.3)
39
+ activerecord (= 7.2.3)
40
+ activestorage (= 7.2.3)
41
+ activesupport (= 7.2.3)
42
+ mail (>= 2.8.0)
43
+ actionmailer (7.2.3)
44
+ actionpack (= 7.2.3)
45
+ actionview (= 7.2.3)
46
+ activejob (= 7.2.3)
47
+ activesupport (= 7.2.3)
48
+ mail (>= 2.8.0)
56
49
  rails-dom-testing (~> 2.2)
57
- actionpack (7.1.5.1)
58
- actionview (= 7.1.5.1)
59
- activesupport (= 7.1.5.1)
50
+ actionpack (7.2.3)
51
+ actionview (= 7.2.3)
52
+ activesupport (= 7.2.3)
53
+ cgi
60
54
  nokogiri (>= 1.8.5)
61
55
  racc
62
- rack (>= 2.2.4)
56
+ rack (>= 2.2.4, < 3.3)
63
57
  rack-session (>= 1.0.1)
64
58
  rack-test (>= 0.6.3)
65
59
  rails-dom-testing (~> 2.2)
66
60
  rails-html-sanitizer (~> 1.6)
67
- actiontext (7.1.5.1)
68
- actionpack (= 7.1.5.1)
69
- activerecord (= 7.1.5.1)
70
- activestorage (= 7.1.5.1)
71
- activesupport (= 7.1.5.1)
61
+ useragent (~> 0.16)
62
+ actiontext (7.2.3)
63
+ actionpack (= 7.2.3)
64
+ activerecord (= 7.2.3)
65
+ activestorage (= 7.2.3)
66
+ activesupport (= 7.2.3)
72
67
  globalid (>= 0.6.0)
73
68
  nokogiri (>= 1.8.5)
74
- actionview (7.1.5.1)
75
- activesupport (= 7.1.5.1)
69
+ actionview (7.2.3)
70
+ activesupport (= 7.2.3)
76
71
  builder (~> 3.1)
72
+ cgi
77
73
  erubi (~> 1.11)
78
74
  rails-dom-testing (~> 2.2)
79
75
  rails-html-sanitizer (~> 1.6)
80
- activejob (7.1.5.1)
81
- activesupport (= 7.1.5.1)
76
+ activejob (7.2.3)
77
+ activesupport (= 7.2.3)
82
78
  globalid (>= 0.3.6)
83
- activemodel (7.1.5.1)
84
- activesupport (= 7.1.5.1)
85
- activerecord (7.1.5.1)
86
- activemodel (= 7.1.5.1)
87
- activesupport (= 7.1.5.1)
79
+ activemodel (7.2.3)
80
+ activesupport (= 7.2.3)
81
+ activerecord (7.2.3)
82
+ activemodel (= 7.2.3)
83
+ activesupport (= 7.2.3)
88
84
  timeout (>= 0.4.0)
89
- activestorage (7.1.5.1)
90
- actionpack (= 7.1.5.1)
91
- activejob (= 7.1.5.1)
92
- activerecord (= 7.1.5.1)
93
- activesupport (= 7.1.5.1)
85
+ activestorage (7.2.3)
86
+ actionpack (= 7.2.3)
87
+ activejob (= 7.2.3)
88
+ activerecord (= 7.2.3)
89
+ activesupport (= 7.2.3)
94
90
  marcel (~> 1.0)
95
- activesupport (7.1.5.1)
91
+ activesupport (7.2.3)
96
92
  base64
97
93
  benchmark (>= 0.3)
98
94
  bigdecimal
99
- concurrent-ruby (~> 1.0, >= 1.0.2)
95
+ concurrent-ruby (~> 1.0, >= 1.3.1)
100
96
  connection_pool (>= 2.2.5)
101
97
  drb
102
98
  i18n (>= 1.6, < 2)
103
99
  logger (>= 1.4.2)
104
100
  minitest (>= 5.1)
105
- mutex_m
106
101
  securerandom (>= 0.3)
107
- tzinfo (~> 2.0)
102
+ tzinfo (~> 2.0, >= 2.0.5)
108
103
  ansi (1.5.0)
109
104
  appraisal (2.5.0)
110
105
  bundler
@@ -112,6 +107,7 @@ GEM
112
107
  thor (>= 0.14.0)
113
108
  ast (2.4.2)
114
109
  base64 (0.2.0)
110
+ bcrypt (3.1.21)
115
111
  benchmark (0.4.0)
116
112
  bigdecimal (3.1.9)
117
113
  brakeman (6.2.2)
@@ -122,6 +118,8 @@ GEM
122
118
  bundler-audit (0.9.2)
123
119
  bundler (>= 1.2.0, < 3)
124
120
  thor (~> 1.0)
121
+ cgi (0.5.1)
122
+ chunky_png (1.4.0)
125
123
  combustion (1.5.0)
126
124
  activesupport (>= 3.0.0)
127
125
  railties (>= 3.0.0)
@@ -131,7 +129,6 @@ GEM
131
129
  crass (1.0.6)
132
130
  date (3.4.1)
133
131
  drb (2.2.1)
134
- dry-initializer (3.1.1)
135
132
  erubi (1.13.1)
136
133
  ffi (1.17.0-aarch64-linux-gnu)
137
134
  ffi (1.17.0-aarch64-linux-musl)
@@ -144,7 +141,7 @@ GEM
144
141
  fiber-local (1.1.0)
145
142
  fiber-storage
146
143
  fiber-storage (1.0.0)
147
- globalid (1.2.1)
144
+ globalid (1.3.0)
148
145
  activesupport (>= 6.1)
149
146
  i18n (1.14.6)
150
147
  concurrent-ruby (~> 1.0)
@@ -167,12 +164,13 @@ GEM
167
164
  crass (~> 1.0.2)
168
165
  nokogiri (>= 1.12.0)
169
166
  lru_redux (1.1.0)
170
- mail (2.8.1)
167
+ mail (2.9.0)
168
+ logger
171
169
  mini_mime (>= 0.1.1)
172
170
  net-imap
173
171
  net-pop
174
172
  net-smtp
175
- marcel (1.0.4)
173
+ marcel (1.1.0)
176
174
  mini_mime (1.1.5)
177
175
  minitest (5.25.4)
178
176
  minitest-reporters (1.7.1)
@@ -180,15 +178,14 @@ GEM
180
178
  builder
181
179
  minitest (>= 5.0)
182
180
  ruby-progressbar
183
- mutex_m (0.3.0)
184
- net-imap (0.5.4)
181
+ net-imap (0.6.2)
185
182
  date
186
183
  net-protocol
187
184
  net-pop (0.1.2)
188
185
  net-protocol
189
186
  net-protocol (0.2.2)
190
187
  timeout
191
- net-smtp (0.5.0)
188
+ net-smtp (0.5.1)
192
189
  net-protocol
193
190
  nio4r (2.7.4)
194
191
  nokogiri (1.18.0-aarch64-linux-gnu)
@@ -214,38 +211,44 @@ GEM
214
211
  racc
215
212
  pastel (0.8.0)
216
213
  tty-color (~> 0.5)
217
- phlex (1.11.0)
218
- phlex-rails (1.2.2)
219
- phlex (>= 1.10, < 2)
220
- railties (>= 6.1, < 9)
221
- phlex-slotable (0.5.0)
222
- phlex (>= 1.9, < 3)
214
+ phlex (2.3.1)
215
+ zeitwerk (~> 2.7)
216
+ phlex-rails (2.3.1)
217
+ phlex (~> 2.3.0)
218
+ railties (>= 7.1, < 9)
219
+ zeitwerk (~> 2.7)
220
+ phlex-slotable (1.0.0)
221
+ phlex (>= 2, < 3)
223
222
  phlex-tabler_icons (0.3.0)
224
- phlexi-display (0.0.9)
223
+ phlexi-display (0.2.0)
225
224
  activesupport
226
- phlex (~> 1.11)
227
- phlexi-field
225
+ phlex (~> 2.0)
226
+ phlexi-field (~> 0.2.0)
228
227
  zeitwerk
229
- phlexi-field (0.0.11)
230
- activesupport
228
+ phlexi-field (0.2.0)
229
+ activesupport (>= 7.1)
231
230
  fiber-local
232
- phlex (~> 1.11)
231
+ phlex (~> 2.0)
233
232
  zeitwerk
234
- phlexi-form (0.7.0)
233
+ phlexi-form (0.11.0)
235
234
  activesupport
236
- phlex (~> 1.11)
237
- phlexi-field
235
+ phlex (~> 2.0)
236
+ phlexi-field (~> 0.2.0)
238
237
  zeitwerk
239
- phlexi-menu (0.2.0)
240
- phlex (~> 1.11)
241
- phlexi-field
238
+ phlexi-menu (0.4.0)
239
+ phlex (~> 2.0)
240
+ phlexi-field (~> 0.2.0)
242
241
  zeitwerk
243
- phlexi-table (0.0.5)
242
+ phlexi-table (0.2.0)
244
243
  activesupport
245
- phlex (~> 1.11)
244
+ phlex (~> 2.0)
246
245
  phlexi-display
247
- phlexi-field
246
+ phlexi-field (~> 0.2.0)
248
247
  zeitwerk
248
+ propshaft (1.3.1)
249
+ actionpack (>= 7.0.0)
250
+ activesupport (>= 7.0.0)
251
+ rack
249
252
  psych (5.2.2)
250
253
  date
251
254
  stringio
@@ -261,20 +264,20 @@ GEM
261
264
  rack (>= 1.3)
262
265
  rackup (2.2.1)
263
266
  rack (>= 3)
264
- rails (7.1.5.1)
265
- actioncable (= 7.1.5.1)
266
- actionmailbox (= 7.1.5.1)
267
- actionmailer (= 7.1.5.1)
268
- actionpack (= 7.1.5.1)
269
- actiontext (= 7.1.5.1)
270
- actionview (= 7.1.5.1)
271
- activejob (= 7.1.5.1)
272
- activemodel (= 7.1.5.1)
273
- activerecord (= 7.1.5.1)
274
- activestorage (= 7.1.5.1)
275
- activesupport (= 7.1.5.1)
267
+ rails (7.2.3)
268
+ actioncable (= 7.2.3)
269
+ actionmailbox (= 7.2.3)
270
+ actionmailer (= 7.2.3)
271
+ actionpack (= 7.2.3)
272
+ actiontext (= 7.2.3)
273
+ actionview (= 7.2.3)
274
+ activejob (= 7.2.3)
275
+ activemodel (= 7.2.3)
276
+ activerecord (= 7.2.3)
277
+ activestorage (= 7.2.3)
278
+ activesupport (= 7.2.3)
276
279
  bundler (>= 1.15.0)
277
- railties (= 7.1.5.1)
280
+ railties (= 7.2.3)
278
281
  rails-dom-testing (2.2.0)
279
282
  activesupport (>= 5.0.0)
280
283
  minitest
@@ -282,13 +285,15 @@ GEM
282
285
  rails-html-sanitizer (1.6.2)
283
286
  loofah (~> 2.21)
284
287
  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)
285
- railties (7.1.5.1)
286
- actionpack (= 7.1.5.1)
287
- activesupport (= 7.1.5.1)
288
- irb
288
+ railties (7.2.3)
289
+ actionpack (= 7.2.3)
290
+ activesupport (= 7.2.3)
291
+ cgi
292
+ irb (~> 1.13)
289
293
  rackup (>= 1.0.0)
290
294
  rake (>= 12.2)
291
295
  thor (~> 1.0, >= 1.2.2)
296
+ tsort (>= 0.2)
292
297
  zeitwerk (~> 2.6)
293
298
  rainbow (3.1.1)
294
299
  rake (13.2.1)
@@ -301,6 +306,23 @@ GEM
301
306
  regexp_parser (2.10.0)
302
307
  reline (0.6.0)
303
308
  io-console (~> 0.5)
309
+ roda (3.100.0)
310
+ rack
311
+ rodauth (2.42.0)
312
+ roda (>= 2.6.0)
313
+ sequel (>= 4)
314
+ rodauth-model (0.4.0)
315
+ rodauth (~> 2.28)
316
+ rodauth-rails (2.1.2)
317
+ railties (>= 5.1)
318
+ roda (~> 3.76)
319
+ rodauth (~> 2.36)
320
+ rodauth-model (~> 0.2)
321
+ rotp (6.3.0)
322
+ rqrcode (3.2.0)
323
+ chunky_png (~> 1.0)
324
+ rqrcode_core (~> 2.0)
325
+ rqrcode_core (2.1.0)
304
326
  rubocop (1.69.2)
305
327
  json (~> 2.3)
306
328
  language_server-protocol (>= 3.17.0)
@@ -320,9 +342,11 @@ GEM
320
342
  ruby-progressbar (1.13.0)
321
343
  securerandom (0.4.1)
322
344
  semantic_range (3.1.0)
323
- simple_form (5.3.1)
324
- actionpack (>= 5.2)
325
- activemodel (>= 5.2)
345
+ sequel (5.100.0)
346
+ bigdecimal
347
+ sequel-activerecord_connection (2.0.1)
348
+ activerecord (>= 5.1)
349
+ sequel (~> 5.38)
326
350
  sqlite3 (1.7.3-aarch64-linux)
327
351
  sqlite3 (1.7.3-arm-linux)
328
352
  sqlite3 (1.7.3-arm64-darwin)
@@ -346,7 +370,9 @@ GEM
346
370
  tailwind_merge (0.14.0)
347
371
  lru_redux (~> 1.1)
348
372
  thor (1.3.2)
349
- timeout (0.4.3)
373
+ tilt (2.7.0)
374
+ timeout (0.6.0)
375
+ tsort (0.2.0)
350
376
  tty-color (0.6.0)
351
377
  tty-cursor (0.7.1)
352
378
  tty-prompt (0.23.1)
@@ -365,7 +391,9 @@ GEM
365
391
  unicode-display_width (3.1.3)
366
392
  unicode-emoji (~> 4.0, >= 4.0.4)
367
393
  unicode-emoji (4.0.4)
368
- websocket-driver (0.7.6)
394
+ useragent (0.16.11)
395
+ websocket-driver (0.8.0)
396
+ base64
369
397
  websocket-extensions (>= 0.1.0)
370
398
  websocket-extensions (0.1.5)
371
399
  wisper (2.0.1)
@@ -386,6 +414,7 @@ PLATFORMS
386
414
 
387
415
  DEPENDENCIES
388
416
  appraisal
417
+ bcrypt
389
418
  brakeman
390
419
  bundle-audit
391
420
  combustion
@@ -393,12 +422,18 @@ DEPENDENCIES
393
422
  minitest
394
423
  minitest-reporters
395
424
  plutonium!
425
+ propshaft
396
426
  puma (>= 5.0)
397
- rails (~> 7.1.3, >= 7.1.3.4)
427
+ rails (~> 7.2)
398
428
  rake
399
- sqlite3 (~> 1.4)
429
+ rodauth-rails
430
+ rotp
431
+ rqrcode
432
+ sequel-activerecord_connection
433
+ sqlite3
400
434
  standard
401
435
  stimulus-rails
436
+ tilt
402
437
  turbo-rails
403
438
  tzinfo-data
404
439
 
@@ -0,0 +1,20 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 8.0.0"
6
+ gem "sqlite3"
7
+ gem "puma", ">= 5.0"
8
+ gem "importmap-rails"
9
+ gem "turbo-rails"
10
+ gem "stimulus-rails"
11
+ gem "propshaft"
12
+ gem "rodauth-rails"
13
+ gem "sequel-activerecord_connection"
14
+ gem "tilt"
15
+ gem "bcrypt"
16
+ gem "rotp"
17
+ gem "rqrcode"
18
+ gem "tzinfo-data", platforms: [:windows, :jruby]
19
+
20
+ gemspec path: "../"