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.
- checksums.yaml +4 -4
- data/# Plutonium: The pre-alpha demo.md +4 -2
- data/.claude/skills/assets/SKILL.md +416 -0
- data/.claude/skills/connect-resource/SKILL.md +112 -0
- data/.claude/skills/controller/SKILL.md +302 -0
- data/.claude/skills/create-resource/SKILL.md +240 -0
- data/.claude/skills/definition/SKILL.md +218 -0
- data/.claude/skills/definition-actions/SKILL.md +386 -0
- data/.claude/skills/definition-fields/SKILL.md +474 -0
- data/.claude/skills/definition-query/SKILL.md +334 -0
- data/.claude/skills/forms/SKILL.md +439 -0
- data/.claude/skills/installation/SKILL.md +300 -0
- data/.claude/skills/interaction/SKILL.md +382 -0
- data/.claude/skills/model/SKILL.md +267 -0
- data/.claude/skills/model-features/SKILL.md +286 -0
- data/.claude/skills/nested-resources/SKILL.md +274 -0
- data/.claude/skills/package/SKILL.md +191 -0
- data/.claude/skills/policy/SKILL.md +352 -0
- data/.claude/skills/portal/SKILL.md +400 -0
- data/.claude/skills/resource/SKILL.md +281 -0
- data/.claude/skills/rodauth/SKILL.md +452 -0
- data/.claude/skills/views/SKILL.md +563 -0
- data/Appraisals +46 -4
- data/CHANGELOG.md +32 -1
- data/app/assets/plutonium.css +2 -2
- data/config/brakeman.ignore +239 -0
- data/config/initializers/action_policy.rb +1 -1
- data/docs/.vitepress/config.ts +132 -47
- data/docs/concepts/architecture.md +226 -0
- data/docs/concepts/auto-detection.md +254 -0
- data/docs/concepts/index.md +61 -0
- data/docs/concepts/packages-portals.md +304 -0
- data/docs/concepts/resources.md +224 -0
- data/docs/cookbook/blog.md +412 -0
- data/docs/cookbook/index.md +289 -0
- data/docs/cookbook/saas.md +481 -0
- data/docs/getting-started/index.md +56 -0
- data/docs/getting-started/installation.md +146 -0
- data/docs/getting-started/tutorial/01-setup.md +118 -0
- data/docs/getting-started/tutorial/02-first-resource.md +180 -0
- data/docs/getting-started/tutorial/03-authentication.md +246 -0
- data/docs/getting-started/tutorial/04-authorization.md +170 -0
- data/docs/getting-started/tutorial/05-custom-actions.md +202 -0
- data/docs/getting-started/tutorial/06-nested-resources.md +147 -0
- data/docs/getting-started/tutorial/07-customizing-ui.md +254 -0
- data/docs/getting-started/tutorial/index.md +64 -0
- data/docs/guides/adding-resources.md +420 -0
- data/docs/guides/authentication.md +551 -0
- data/docs/guides/authorization.md +468 -0
- data/docs/guides/creating-packages.md +380 -0
- data/docs/guides/custom-actions.md +523 -0
- data/docs/guides/index.md +45 -0
- data/docs/guides/multi-tenancy.md +302 -0
- data/docs/guides/nested-resources.md +411 -0
- data/docs/guides/search-filtering.md +266 -0
- data/docs/guides/theming.md +321 -0
- data/docs/index.md +67 -26
- data/docs/public/CLAUDE.md +64 -21
- data/docs/reference/assets/index.md +496 -0
- data/docs/reference/controller/index.md +363 -0
- data/docs/reference/definition/actions.md +400 -0
- data/docs/reference/definition/fields.md +350 -0
- data/docs/reference/definition/index.md +252 -0
- data/docs/reference/definition/query.md +342 -0
- data/docs/reference/generators/index.md +469 -0
- data/docs/reference/index.md +49 -0
- data/docs/reference/interaction/index.md +445 -0
- data/docs/reference/model/features.md +248 -0
- data/docs/reference/model/index.md +219 -0
- data/docs/reference/policy/index.md +385 -0
- data/docs/reference/portal/index.md +382 -0
- data/docs/reference/views/forms.md +396 -0
- data/docs/reference/views/index.md +479 -0
- data/gemfiles/rails_7.gemfile +9 -2
- data/gemfiles/rails_7.gemfile.lock +146 -111
- data/gemfiles/rails_8.0.gemfile +20 -0
- data/gemfiles/rails_8.0.gemfile.lock +417 -0
- data/gemfiles/rails_8.1.gemfile +20 -0
- data/gemfiles/rails_8.1.gemfile.lock +419 -0
- data/lib/generators/pu/gem/dotenv/templates/.env +2 -0
- data/lib/generators/pu/gem/dotenv/templates/config/initializers/001_ensure_required_env.rb +3 -1
- data/lib/generators/pu/lib/plutonium_generators/model_generator_base.rb +13 -16
- data/lib/generators/pu/pkg/portal/USAGE +65 -0
- data/lib/generators/pu/pkg/portal/portal_generator.rb +22 -9
- data/lib/generators/pu/res/conn/USAGE +71 -0
- data/lib/generators/pu/res/model/USAGE +106 -110
- data/lib/generators/pu/res/model/templates/model.rb.tt +6 -2
- data/lib/generators/pu/res/scaffold/USAGE +85 -0
- data/lib/generators/pu/rodauth/install_generator.rb +2 -6
- data/lib/generators/pu/rodauth/templates/config/initializers/url_options.rb +17 -0
- data/lib/generators/pu/skills/sync/USAGE +14 -0
- data/lib/generators/pu/skills/sync/sync_generator.rb +66 -0
- data/lib/plutonium/action_policy/sti_policy_lookup.rb +1 -1
- data/lib/plutonium/core/controller.rb +2 -2
- data/lib/plutonium/interaction/base.rb +1 -0
- data/lib/plutonium/package/engine.rb +2 -2
- data/lib/plutonium/query/adhoc_block.rb +6 -2
- data/lib/plutonium/query/model_scope.rb +1 -1
- data/lib/plutonium/railtie.rb +4 -0
- data/lib/plutonium/resource/controllers/crud_actions/index_action.rb +1 -1
- data/lib/plutonium/resource/query_object.rb +38 -8
- data/lib/plutonium/ui/table/components/scopes_bar.rb +39 -34
- data/lib/plutonium/version.rb +1 -1
- data/lib/tasks/release.rake +19 -4
- data/package.json +1 -1
- metadata +76 -39
- data/brakeman.ignore +0 -28
- data/docs/api-examples.md +0 -49
- data/docs/guide/claude-code-guide.md +0 -74
- data/docs/guide/deep-dive/authorization.md +0 -189
- data/docs/guide/deep-dive/multitenancy.md +0 -256
- data/docs/guide/deep-dive/resources.md +0 -390
- data/docs/guide/getting-started/01-installation.md +0 -165
- data/docs/guide/index.md +0 -28
- data/docs/guide/introduction/01-what-is-plutonium.md +0 -211
- data/docs/guide/introduction/02-core-concepts.md +0 -440
- data/docs/guide/tutorial/01-project-setup.md +0 -75
- data/docs/guide/tutorial/02-creating-a-feature-package.md +0 -45
- data/docs/guide/tutorial/03-defining-resources.md +0 -90
- data/docs/guide/tutorial/04-creating-a-portal.md +0 -101
- data/docs/guide/tutorial/05-customizing-the-ui.md +0 -128
- data/docs/guide/tutorial/06-adding-custom-actions.md +0 -101
- data/docs/guide/tutorial/07-implementing-authorization.md +0 -90
- data/docs/markdown-examples.md +0 -85
- data/docs/modules/action.md +0 -244
- data/docs/modules/authentication.md +0 -236
- data/docs/modules/configuration.md +0 -599
- data/docs/modules/controller.md +0 -443
- data/docs/modules/core.md +0 -316
- data/docs/modules/definition.md +0 -1308
- data/docs/modules/display.md +0 -759
- data/docs/modules/form.md +0 -495
- data/docs/modules/generator.md +0 -400
- data/docs/modules/index.md +0 -167
- data/docs/modules/interaction.md +0 -642
- data/docs/modules/package.md +0 -151
- data/docs/modules/policy.md +0 -176
- data/docs/modules/portal.md +0 -710
- data/docs/modules/query.md +0 -297
- data/docs/modules/resource_record.md +0 -618
- data/docs/modules/routing.md +0 -690
- data/docs/modules/table.md +0 -301
- data/docs/modules/ui.md +0 -631
|
@@ -0,0 +1,417 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
plutonium (0.33.1)
|
|
5
|
+
action_policy (~> 0.7.0)
|
|
6
|
+
listen (~> 3.8)
|
|
7
|
+
pagy (~> 9.0)
|
|
8
|
+
phlex (~> 2.0)
|
|
9
|
+
phlex-rails
|
|
10
|
+
phlex-slotable (>= 1.0.0)
|
|
11
|
+
phlex-tabler_icons
|
|
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
|
+
rabl (~> 0.16.1)
|
|
18
|
+
rails (>= 7.2)
|
|
19
|
+
redcarpet
|
|
20
|
+
semantic_range (~> 3.0)
|
|
21
|
+
tailwind_merge
|
|
22
|
+
tty-prompt (~> 0.23.1)
|
|
23
|
+
zeitwerk
|
|
24
|
+
|
|
25
|
+
GEM
|
|
26
|
+
remote: https://rubygems.org/
|
|
27
|
+
specs:
|
|
28
|
+
action_policy (0.7.6)
|
|
29
|
+
ruby-next-core (>= 1.0)
|
|
30
|
+
actioncable (8.0.3)
|
|
31
|
+
actionpack (= 8.0.3)
|
|
32
|
+
activesupport (= 8.0.3)
|
|
33
|
+
nio4r (~> 2.0)
|
|
34
|
+
websocket-driver (>= 0.6.1)
|
|
35
|
+
zeitwerk (~> 2.6)
|
|
36
|
+
actionmailbox (8.0.3)
|
|
37
|
+
actionpack (= 8.0.3)
|
|
38
|
+
activejob (= 8.0.3)
|
|
39
|
+
activerecord (= 8.0.3)
|
|
40
|
+
activestorage (= 8.0.3)
|
|
41
|
+
activesupport (= 8.0.3)
|
|
42
|
+
mail (>= 2.8.0)
|
|
43
|
+
actionmailer (8.0.3)
|
|
44
|
+
actionpack (= 8.0.3)
|
|
45
|
+
actionview (= 8.0.3)
|
|
46
|
+
activejob (= 8.0.3)
|
|
47
|
+
activesupport (= 8.0.3)
|
|
48
|
+
mail (>= 2.8.0)
|
|
49
|
+
rails-dom-testing (~> 2.2)
|
|
50
|
+
actionpack (8.0.3)
|
|
51
|
+
actionview (= 8.0.3)
|
|
52
|
+
activesupport (= 8.0.3)
|
|
53
|
+
nokogiri (>= 1.8.5)
|
|
54
|
+
rack (>= 2.2.4)
|
|
55
|
+
rack-session (>= 1.0.1)
|
|
56
|
+
rack-test (>= 0.6.3)
|
|
57
|
+
rails-dom-testing (~> 2.2)
|
|
58
|
+
rails-html-sanitizer (~> 1.6)
|
|
59
|
+
useragent (~> 0.16)
|
|
60
|
+
actiontext (8.0.3)
|
|
61
|
+
actionpack (= 8.0.3)
|
|
62
|
+
activerecord (= 8.0.3)
|
|
63
|
+
activestorage (= 8.0.3)
|
|
64
|
+
activesupport (= 8.0.3)
|
|
65
|
+
globalid (>= 0.6.0)
|
|
66
|
+
nokogiri (>= 1.8.5)
|
|
67
|
+
actionview (8.0.3)
|
|
68
|
+
activesupport (= 8.0.3)
|
|
69
|
+
builder (~> 3.1)
|
|
70
|
+
erubi (~> 1.11)
|
|
71
|
+
rails-dom-testing (~> 2.2)
|
|
72
|
+
rails-html-sanitizer (~> 1.6)
|
|
73
|
+
activejob (8.0.3)
|
|
74
|
+
activesupport (= 8.0.3)
|
|
75
|
+
globalid (>= 0.3.6)
|
|
76
|
+
activemodel (8.0.3)
|
|
77
|
+
activesupport (= 8.0.3)
|
|
78
|
+
activerecord (8.0.3)
|
|
79
|
+
activemodel (= 8.0.3)
|
|
80
|
+
activesupport (= 8.0.3)
|
|
81
|
+
timeout (>= 0.4.0)
|
|
82
|
+
activestorage (8.0.3)
|
|
83
|
+
actionpack (= 8.0.3)
|
|
84
|
+
activejob (= 8.0.3)
|
|
85
|
+
activerecord (= 8.0.3)
|
|
86
|
+
activesupport (= 8.0.3)
|
|
87
|
+
marcel (~> 1.0)
|
|
88
|
+
activesupport (8.0.3)
|
|
89
|
+
base64
|
|
90
|
+
benchmark (>= 0.3)
|
|
91
|
+
bigdecimal
|
|
92
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
93
|
+
connection_pool (>= 2.2.5)
|
|
94
|
+
drb
|
|
95
|
+
i18n (>= 1.6, < 2)
|
|
96
|
+
logger (>= 1.4.2)
|
|
97
|
+
minitest (>= 5.1)
|
|
98
|
+
securerandom (>= 0.3)
|
|
99
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
100
|
+
uri (>= 0.13.1)
|
|
101
|
+
ansi (1.5.0)
|
|
102
|
+
appraisal (2.5.0)
|
|
103
|
+
bundler
|
|
104
|
+
rake
|
|
105
|
+
thor (>= 0.14.0)
|
|
106
|
+
ast (2.4.3)
|
|
107
|
+
base64 (0.3.0)
|
|
108
|
+
bcrypt (3.1.21)
|
|
109
|
+
benchmark (0.4.1)
|
|
110
|
+
bigdecimal (4.0.1)
|
|
111
|
+
brakeman (7.1.1)
|
|
112
|
+
racc
|
|
113
|
+
builder (3.3.0)
|
|
114
|
+
bundle-audit (0.1.0)
|
|
115
|
+
bundler-audit
|
|
116
|
+
bundler-audit (0.9.2)
|
|
117
|
+
bundler (>= 1.2.0, < 3)
|
|
118
|
+
thor (~> 1.0)
|
|
119
|
+
chunky_png (1.4.0)
|
|
120
|
+
combustion (1.5.0)
|
|
121
|
+
activesupport (>= 3.0.0)
|
|
122
|
+
railties (>= 3.0.0)
|
|
123
|
+
thor (>= 0.14.6)
|
|
124
|
+
concurrent-ruby (1.3.6)
|
|
125
|
+
connection_pool (3.0.2)
|
|
126
|
+
crass (1.0.6)
|
|
127
|
+
date (3.5.1)
|
|
128
|
+
drb (2.2.3)
|
|
129
|
+
erb (6.0.1)
|
|
130
|
+
erubi (1.13.1)
|
|
131
|
+
ffi (1.17.3-arm64-darwin)
|
|
132
|
+
fiber-local (1.1.0)
|
|
133
|
+
fiber-storage
|
|
134
|
+
fiber-storage (1.0.1)
|
|
135
|
+
globalid (1.3.0)
|
|
136
|
+
activesupport (>= 6.1)
|
|
137
|
+
i18n (1.14.8)
|
|
138
|
+
concurrent-ruby (~> 1.0)
|
|
139
|
+
importmap-rails (2.1.0)
|
|
140
|
+
actionpack (>= 6.0.0)
|
|
141
|
+
activesupport (>= 6.0.0)
|
|
142
|
+
railties (>= 6.0.0)
|
|
143
|
+
io-console (0.8.2)
|
|
144
|
+
irb (1.16.0)
|
|
145
|
+
pp (>= 0.6.0)
|
|
146
|
+
rdoc (>= 4.0.0)
|
|
147
|
+
reline (>= 0.4.2)
|
|
148
|
+
json (2.18.0)
|
|
149
|
+
language_server-protocol (3.17.0.5)
|
|
150
|
+
lint_roller (1.1.0)
|
|
151
|
+
listen (3.10.0)
|
|
152
|
+
logger
|
|
153
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
154
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
155
|
+
logger (1.7.0)
|
|
156
|
+
loofah (2.25.0)
|
|
157
|
+
crass (~> 1.0.2)
|
|
158
|
+
nokogiri (>= 1.12.0)
|
|
159
|
+
mail (2.9.0)
|
|
160
|
+
logger
|
|
161
|
+
mini_mime (>= 0.1.1)
|
|
162
|
+
net-imap
|
|
163
|
+
net-pop
|
|
164
|
+
net-smtp
|
|
165
|
+
marcel (1.1.0)
|
|
166
|
+
mini_mime (1.1.5)
|
|
167
|
+
minitest (6.0.1)
|
|
168
|
+
prism (~> 1.5)
|
|
169
|
+
minitest-reporters (1.7.1)
|
|
170
|
+
ansi
|
|
171
|
+
builder
|
|
172
|
+
minitest (>= 5.0)
|
|
173
|
+
ruby-progressbar
|
|
174
|
+
net-imap (0.6.2)
|
|
175
|
+
date
|
|
176
|
+
net-protocol
|
|
177
|
+
net-pop (0.1.2)
|
|
178
|
+
net-protocol
|
|
179
|
+
net-protocol (0.2.2)
|
|
180
|
+
timeout
|
|
181
|
+
net-smtp (0.5.1)
|
|
182
|
+
net-protocol
|
|
183
|
+
nio4r (2.7.5)
|
|
184
|
+
nokogiri (1.19.0-arm64-darwin)
|
|
185
|
+
racc (~> 1.4)
|
|
186
|
+
pagy (9.4.0)
|
|
187
|
+
parallel (1.27.0)
|
|
188
|
+
parser (3.3.10.0)
|
|
189
|
+
ast (~> 2.4.1)
|
|
190
|
+
racc
|
|
191
|
+
pastel (0.8.0)
|
|
192
|
+
tty-color (~> 0.5)
|
|
193
|
+
phlex (2.3.1)
|
|
194
|
+
zeitwerk (~> 2.7)
|
|
195
|
+
phlex-rails (2.3.1)
|
|
196
|
+
phlex (~> 2.3.0)
|
|
197
|
+
railties (>= 7.1, < 9)
|
|
198
|
+
zeitwerk (~> 2.7)
|
|
199
|
+
phlex-slotable (1.0.0)
|
|
200
|
+
phlex (>= 2, < 3)
|
|
201
|
+
phlex-tabler_icons (0.3.0)
|
|
202
|
+
phlexi-display (0.2.0)
|
|
203
|
+
activesupport
|
|
204
|
+
phlex (~> 2.0)
|
|
205
|
+
phlexi-field (~> 0.2.0)
|
|
206
|
+
zeitwerk
|
|
207
|
+
phlexi-field (0.2.0)
|
|
208
|
+
activesupport (>= 7.1)
|
|
209
|
+
fiber-local
|
|
210
|
+
phlex (~> 2.0)
|
|
211
|
+
zeitwerk
|
|
212
|
+
phlexi-form (0.11.0)
|
|
213
|
+
activesupport
|
|
214
|
+
phlex (~> 2.0)
|
|
215
|
+
phlexi-field (~> 0.2.0)
|
|
216
|
+
zeitwerk
|
|
217
|
+
phlexi-menu (0.4.0)
|
|
218
|
+
phlex (~> 2.0)
|
|
219
|
+
phlexi-field (~> 0.2.0)
|
|
220
|
+
zeitwerk
|
|
221
|
+
phlexi-table (0.2.0)
|
|
222
|
+
activesupport
|
|
223
|
+
phlex (~> 2.0)
|
|
224
|
+
phlexi-display
|
|
225
|
+
phlexi-field (~> 0.2.0)
|
|
226
|
+
zeitwerk
|
|
227
|
+
pp (0.6.3)
|
|
228
|
+
prettyprint
|
|
229
|
+
prettyprint (0.2.0)
|
|
230
|
+
prism (1.7.0)
|
|
231
|
+
propshaft (1.3.1)
|
|
232
|
+
actionpack (>= 7.0.0)
|
|
233
|
+
activesupport (>= 7.0.0)
|
|
234
|
+
rack
|
|
235
|
+
psych (5.3.1)
|
|
236
|
+
date
|
|
237
|
+
stringio
|
|
238
|
+
puma (6.5.0)
|
|
239
|
+
nio4r (~> 2.0)
|
|
240
|
+
rabl (0.16.1)
|
|
241
|
+
activesupport (>= 2.3.14)
|
|
242
|
+
racc (1.8.1)
|
|
243
|
+
rack (3.2.4)
|
|
244
|
+
rack-session (2.1.1)
|
|
245
|
+
base64 (>= 0.1.0)
|
|
246
|
+
rack (>= 3.0.0)
|
|
247
|
+
rack-test (2.2.0)
|
|
248
|
+
rack (>= 1.3)
|
|
249
|
+
rackup (2.3.1)
|
|
250
|
+
rack (>= 3)
|
|
251
|
+
rails (8.0.3)
|
|
252
|
+
actioncable (= 8.0.3)
|
|
253
|
+
actionmailbox (= 8.0.3)
|
|
254
|
+
actionmailer (= 8.0.3)
|
|
255
|
+
actionpack (= 8.0.3)
|
|
256
|
+
actiontext (= 8.0.3)
|
|
257
|
+
actionview (= 8.0.3)
|
|
258
|
+
activejob (= 8.0.3)
|
|
259
|
+
activemodel (= 8.0.3)
|
|
260
|
+
activerecord (= 8.0.3)
|
|
261
|
+
activestorage (= 8.0.3)
|
|
262
|
+
activesupport (= 8.0.3)
|
|
263
|
+
bundler (>= 1.15.0)
|
|
264
|
+
railties (= 8.0.3)
|
|
265
|
+
rails-dom-testing (2.3.0)
|
|
266
|
+
activesupport (>= 5.0.0)
|
|
267
|
+
minitest
|
|
268
|
+
nokogiri (>= 1.6)
|
|
269
|
+
rails-html-sanitizer (1.6.2)
|
|
270
|
+
loofah (~> 2.21)
|
|
271
|
+
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)
|
|
272
|
+
railties (8.0.3)
|
|
273
|
+
actionpack (= 8.0.3)
|
|
274
|
+
activesupport (= 8.0.3)
|
|
275
|
+
irb (~> 1.13)
|
|
276
|
+
rackup (>= 1.0.0)
|
|
277
|
+
rake (>= 12.2)
|
|
278
|
+
thor (~> 1.0, >= 1.2.2)
|
|
279
|
+
tsort (>= 0.2)
|
|
280
|
+
zeitwerk (~> 2.6)
|
|
281
|
+
rainbow (3.1.1)
|
|
282
|
+
rake (13.3.1)
|
|
283
|
+
rb-fsevent (0.11.2)
|
|
284
|
+
rb-inotify (0.11.1)
|
|
285
|
+
ffi (~> 1.0)
|
|
286
|
+
rdoc (7.0.3)
|
|
287
|
+
erb
|
|
288
|
+
psych (>= 4.0.0)
|
|
289
|
+
tsort
|
|
290
|
+
redcarpet (3.6.1)
|
|
291
|
+
regexp_parser (2.11.3)
|
|
292
|
+
reline (0.6.3)
|
|
293
|
+
io-console (~> 0.5)
|
|
294
|
+
roda (3.100.0)
|
|
295
|
+
rack
|
|
296
|
+
rodauth (2.42.0)
|
|
297
|
+
roda (>= 2.6.0)
|
|
298
|
+
sequel (>= 4)
|
|
299
|
+
rodauth-model (0.4.0)
|
|
300
|
+
rodauth (~> 2.28)
|
|
301
|
+
rodauth-rails (2.1.2)
|
|
302
|
+
railties (>= 5.1)
|
|
303
|
+
roda (~> 3.76)
|
|
304
|
+
rodauth (~> 2.36)
|
|
305
|
+
rodauth-model (~> 0.2)
|
|
306
|
+
rotp (6.3.0)
|
|
307
|
+
rqrcode (3.2.0)
|
|
308
|
+
chunky_png (~> 1.0)
|
|
309
|
+
rqrcode_core (~> 2.0)
|
|
310
|
+
rqrcode_core (2.1.0)
|
|
311
|
+
rubocop (1.80.2)
|
|
312
|
+
json (~> 2.3)
|
|
313
|
+
language_server-protocol (~> 3.17.0.2)
|
|
314
|
+
lint_roller (~> 1.1.0)
|
|
315
|
+
parallel (~> 1.10)
|
|
316
|
+
parser (>= 3.3.0.2)
|
|
317
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
318
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
319
|
+
rubocop-ast (>= 1.46.0, < 2.0)
|
|
320
|
+
ruby-progressbar (~> 1.7)
|
|
321
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
322
|
+
rubocop-ast (1.47.1)
|
|
323
|
+
parser (>= 3.3.7.2)
|
|
324
|
+
prism (~> 1.4)
|
|
325
|
+
rubocop-performance (1.25.0)
|
|
326
|
+
lint_roller (~> 1.1)
|
|
327
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
328
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
|
329
|
+
ruby-next-core (1.2.0)
|
|
330
|
+
ruby-progressbar (1.13.0)
|
|
331
|
+
securerandom (0.4.1)
|
|
332
|
+
semantic_range (3.1.0)
|
|
333
|
+
sequel (5.100.0)
|
|
334
|
+
bigdecimal
|
|
335
|
+
sequel-activerecord_connection (2.0.1)
|
|
336
|
+
activerecord (>= 5.1)
|
|
337
|
+
sequel (~> 5.38)
|
|
338
|
+
sin_lru_redux (2.5.2)
|
|
339
|
+
sqlite3 (2.6.0-arm64-darwin)
|
|
340
|
+
standard (1.51.1)
|
|
341
|
+
language_server-protocol (~> 3.17.0.2)
|
|
342
|
+
lint_roller (~> 1.0)
|
|
343
|
+
rubocop (~> 1.80.2)
|
|
344
|
+
standard-custom (~> 1.0.0)
|
|
345
|
+
standard-performance (~> 1.8)
|
|
346
|
+
standard-custom (1.0.2)
|
|
347
|
+
lint_roller (~> 1.0)
|
|
348
|
+
rubocop (~> 1.50)
|
|
349
|
+
standard-performance (1.8.0)
|
|
350
|
+
lint_roller (~> 1.1)
|
|
351
|
+
rubocop-performance (~> 1.25.0)
|
|
352
|
+
stimulus-rails (1.3.4)
|
|
353
|
+
railties (>= 6.0.0)
|
|
354
|
+
stringio (3.2.0)
|
|
355
|
+
tailwind_merge (1.3.2)
|
|
356
|
+
sin_lru_redux (~> 2.5)
|
|
357
|
+
thor (1.5.0)
|
|
358
|
+
tilt (2.7.0)
|
|
359
|
+
timeout (0.6.0)
|
|
360
|
+
tsort (0.2.0)
|
|
361
|
+
tty-color (0.6.0)
|
|
362
|
+
tty-cursor (0.7.1)
|
|
363
|
+
tty-prompt (0.23.1)
|
|
364
|
+
pastel (~> 0.8)
|
|
365
|
+
tty-reader (~> 0.8)
|
|
366
|
+
tty-reader (0.9.0)
|
|
367
|
+
tty-cursor (~> 0.7)
|
|
368
|
+
tty-screen (~> 0.8)
|
|
369
|
+
wisper (~> 2.0)
|
|
370
|
+
tty-screen (0.8.2)
|
|
371
|
+
turbo-rails (2.0.13)
|
|
372
|
+
actionpack (>= 7.1.0)
|
|
373
|
+
railties (>= 7.1.0)
|
|
374
|
+
tzinfo (2.0.6)
|
|
375
|
+
concurrent-ruby (~> 1.0)
|
|
376
|
+
unicode-display_width (3.2.0)
|
|
377
|
+
unicode-emoji (~> 4.1)
|
|
378
|
+
unicode-emoji (4.1.0)
|
|
379
|
+
uri (1.1.1)
|
|
380
|
+
useragent (0.16.11)
|
|
381
|
+
websocket-driver (0.8.0)
|
|
382
|
+
base64
|
|
383
|
+
websocket-extensions (>= 0.1.0)
|
|
384
|
+
websocket-extensions (0.1.5)
|
|
385
|
+
wisper (2.0.1)
|
|
386
|
+
zeitwerk (2.7.4)
|
|
387
|
+
|
|
388
|
+
PLATFORMS
|
|
389
|
+
arm64-darwin
|
|
390
|
+
|
|
391
|
+
DEPENDENCIES
|
|
392
|
+
appraisal
|
|
393
|
+
bcrypt
|
|
394
|
+
brakeman
|
|
395
|
+
bundle-audit
|
|
396
|
+
combustion
|
|
397
|
+
importmap-rails
|
|
398
|
+
minitest
|
|
399
|
+
minitest-reporters
|
|
400
|
+
plutonium!
|
|
401
|
+
propshaft
|
|
402
|
+
puma (>= 5.0)
|
|
403
|
+
rails (~> 8.0.0)
|
|
404
|
+
rake
|
|
405
|
+
rodauth-rails
|
|
406
|
+
rotp
|
|
407
|
+
rqrcode
|
|
408
|
+
sequel-activerecord_connection
|
|
409
|
+
sqlite3
|
|
410
|
+
standard
|
|
411
|
+
stimulus-rails
|
|
412
|
+
tilt
|
|
413
|
+
turbo-rails
|
|
414
|
+
tzinfo-data
|
|
415
|
+
|
|
416
|
+
BUNDLED WITH
|
|
417
|
+
2.5.16
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
|
|
5
|
+
gem "rails", "~> 8.1.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: "../"
|