phlexible 2.2.0 → 3.0.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/.rubocop.yml +5 -7
- data/.ruby-version +1 -0
- data/Appraisals +11 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +130 -42
- data/README.md +20 -1
- data/config/render_helper.rb +27 -0
- data/config/sus.rb +1 -1
- data/fixtures/rails_helper.rb +1 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/phlex_1.gemfile +14 -0
- data/gemfiles/phlex_1.gemfile.lock +253 -0
- data/gemfiles/phlex_2.gemfile +14 -0
- data/gemfiles/phlex_2.gemfile.lock +254 -0
- data/lib/phlexible/rails/a_element.rb +7 -1
- data/lib/phlexible/rails/button_to.rb +0 -113
- data/lib/phlexible/rails/button_to_concerns.rb +140 -0
- data/lib/phlexible/rails/controller_variables.rb +6 -3
- data/lib/phlexible/rails/meta_tags_component.rb +3 -1
- data/lib/phlexible/rails/view_assigns.rb +17 -0
- data/lib/phlexible/version.rb +1 -1
- data/lib/phlexible.rb +6 -5
- data/phlexible.gemspec +4 -2
- metadata +56 -11
- data/config/view_helper.rb +0 -16
- data/lib/phlexible/rails.rb +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af9a39dba0e25b8381fc0f513111e488e27e6fa6d31d3d41ec7d7b7d4aa07cd1
|
4
|
+
data.tar.gz: b1e271a6e412e7e05aabed4b8c4f3a35157a04c6a7e0723ee70b9414beb65565
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27635a6f6135a15af61920b630269372199777701ec92b216f6e7309880fd46d93705890ef8545fb7d47101d295ad0744406cc1cd9beddfdf81fe03c3b849f71
|
7
|
+
data.tar.gz: c22b9d2d997f94ee86ee3c3c854ec631e2864f549c76d3ffc10138de0df0e2eeafbb2c7c5d9f6e15f2cea4fa1bb1a2982ed38e784878f433edef563f1d6bf8f6
|
data/.rubocop.yml
CHANGED
@@ -2,6 +2,9 @@ AllCops:
|
|
2
2
|
TargetRubyVersion: 3.3.0
|
3
3
|
SuggestExtensions: false
|
4
4
|
NewCops: enable
|
5
|
+
Exclude:
|
6
|
+
- "vendor/**/*"
|
7
|
+
- gemfiles/**/*
|
5
8
|
|
6
9
|
Lint/ConstantDefinitionInBlock:
|
7
10
|
Exclude:
|
@@ -13,10 +16,5 @@ Style/ClassAndModuleChildren:
|
|
13
16
|
Exclude:
|
14
17
|
- fixtures/**/*
|
15
18
|
|
16
|
-
Metrics
|
17
|
-
|
18
|
-
- test/**/*
|
19
|
-
Metrics/MethodLength:
|
20
|
-
Max: 20
|
21
|
-
Metrics/CyclomaticComplexity:
|
22
|
-
Max: 8
|
19
|
+
Metrics:
|
20
|
+
Enabled: false
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.3.6
|
data/Appraisals
ADDED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,16 +1,38 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
phlexible (
|
5
|
-
phlex (>= 1.10.0, <
|
6
|
-
phlex-rails (>= 1.2.
|
4
|
+
phlexible (3.0.0)
|
5
|
+
phlex (>= 1.10.0, < 3.0.0)
|
6
|
+
phlex-rails (>= 1.2.0, < 3.0.0)
|
7
|
+
rails (>= 7.2.0, < 9.0.0)
|
8
|
+
zeitwerk (~> 2.7.2)
|
7
9
|
|
8
10
|
GEM
|
9
11
|
remote: https://rubygems.org/
|
10
12
|
specs:
|
11
|
-
|
12
|
-
|
13
|
-
activesupport (= 8.0.
|
13
|
+
actioncable (8.0.2)
|
14
|
+
actionpack (= 8.0.2)
|
15
|
+
activesupport (= 8.0.2)
|
16
|
+
nio4r (~> 2.0)
|
17
|
+
websocket-driver (>= 0.6.1)
|
18
|
+
zeitwerk (~> 2.6)
|
19
|
+
actionmailbox (8.0.2)
|
20
|
+
actionpack (= 8.0.2)
|
21
|
+
activejob (= 8.0.2)
|
22
|
+
activerecord (= 8.0.2)
|
23
|
+
activestorage (= 8.0.2)
|
24
|
+
activesupport (= 8.0.2)
|
25
|
+
mail (>= 2.8.0)
|
26
|
+
actionmailer (8.0.2)
|
27
|
+
actionpack (= 8.0.2)
|
28
|
+
actionview (= 8.0.2)
|
29
|
+
activejob (= 8.0.2)
|
30
|
+
activesupport (= 8.0.2)
|
31
|
+
mail (>= 2.8.0)
|
32
|
+
rails-dom-testing (~> 2.2)
|
33
|
+
actionpack (8.0.2)
|
34
|
+
actionview (= 8.0.2)
|
35
|
+
activesupport (= 8.0.2)
|
14
36
|
nokogiri (>= 1.8.5)
|
15
37
|
rack (>= 2.2.4)
|
16
38
|
rack-session (>= 1.0.1)
|
@@ -18,13 +40,35 @@ GEM
|
|
18
40
|
rails-dom-testing (~> 2.2)
|
19
41
|
rails-html-sanitizer (~> 1.6)
|
20
42
|
useragent (~> 0.16)
|
21
|
-
|
22
|
-
|
43
|
+
actiontext (8.0.2)
|
44
|
+
actionpack (= 8.0.2)
|
45
|
+
activerecord (= 8.0.2)
|
46
|
+
activestorage (= 8.0.2)
|
47
|
+
activesupport (= 8.0.2)
|
48
|
+
globalid (>= 0.6.0)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (8.0.2)
|
51
|
+
activesupport (= 8.0.2)
|
23
52
|
builder (~> 3.1)
|
24
53
|
erubi (~> 1.11)
|
25
54
|
rails-dom-testing (~> 2.2)
|
26
55
|
rails-html-sanitizer (~> 1.6)
|
27
|
-
|
56
|
+
activejob (8.0.2)
|
57
|
+
activesupport (= 8.0.2)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (8.0.2)
|
60
|
+
activesupport (= 8.0.2)
|
61
|
+
activerecord (8.0.2)
|
62
|
+
activemodel (= 8.0.2)
|
63
|
+
activesupport (= 8.0.2)
|
64
|
+
timeout (>= 0.4.0)
|
65
|
+
activestorage (8.0.2)
|
66
|
+
actionpack (= 8.0.2)
|
67
|
+
activejob (= 8.0.2)
|
68
|
+
activerecord (= 8.0.2)
|
69
|
+
activesupport (= 8.0.2)
|
70
|
+
marcel (~> 1.0)
|
71
|
+
activesupport (8.0.2)
|
28
72
|
base64
|
29
73
|
benchmark (>= 0.3)
|
30
74
|
bigdecimal
|
@@ -37,7 +81,11 @@ GEM
|
|
37
81
|
securerandom (>= 0.3)
|
38
82
|
tzinfo (~> 2.0, >= 2.0.5)
|
39
83
|
uri (>= 0.13.1)
|
40
|
-
|
84
|
+
appraisal (2.5.0)
|
85
|
+
bundler
|
86
|
+
rake
|
87
|
+
thor (>= 0.14.0)
|
88
|
+
ast (2.4.3)
|
41
89
|
base64 (0.2.0)
|
42
90
|
benchmark (0.4.0)
|
43
91
|
bigdecimal (3.1.9)
|
@@ -47,7 +95,7 @@ GEM
|
|
47
95
|
railties (>= 3.0.0)
|
48
96
|
thor (>= 0.14.6)
|
49
97
|
concurrent-ruby (1.3.5)
|
50
|
-
connection_pool (2.5.
|
98
|
+
connection_pool (2.5.1)
|
51
99
|
crass (1.0.6)
|
52
100
|
date (3.4.1)
|
53
101
|
debug (1.10.0)
|
@@ -55,45 +103,64 @@ GEM
|
|
55
103
|
reline (>= 0.3.8)
|
56
104
|
drb (2.2.1)
|
57
105
|
erubi (1.13.1)
|
106
|
+
globalid (1.2.1)
|
107
|
+
activesupport (>= 6.1)
|
58
108
|
i18n (1.14.7)
|
59
109
|
concurrent-ruby (~> 1.0)
|
60
110
|
io-console (0.8.0)
|
61
|
-
irb (1.15.
|
111
|
+
irb (1.15.2)
|
62
112
|
pp (>= 0.6.0)
|
63
113
|
rdoc (>= 4.0.0)
|
64
114
|
reline (>= 0.4.2)
|
65
|
-
json (2.
|
115
|
+
json (2.10.2)
|
66
116
|
language_server-protocol (3.17.0.4)
|
67
|
-
|
117
|
+
lint_roller (1.1.0)
|
118
|
+
logger (1.7.0)
|
68
119
|
loofah (2.24.0)
|
69
120
|
crass (~> 1.0.2)
|
70
121
|
nokogiri (>= 1.12.0)
|
71
|
-
|
72
|
-
|
122
|
+
mail (2.8.1)
|
123
|
+
mini_mime (>= 0.1.1)
|
124
|
+
net-imap
|
125
|
+
net-pop
|
126
|
+
net-smtp
|
127
|
+
marcel (1.0.4)
|
128
|
+
mini_mime (1.1.5)
|
129
|
+
minitest (5.25.5)
|
130
|
+
net-imap (0.5.7)
|
131
|
+
date
|
132
|
+
net-protocol
|
133
|
+
net-pop (0.1.2)
|
134
|
+
net-protocol
|
135
|
+
net-protocol (0.2.2)
|
136
|
+
timeout
|
137
|
+
net-smtp (0.5.1)
|
138
|
+
net-protocol
|
139
|
+
nio4r (2.7.4)
|
140
|
+
nokogiri (1.18.8-arm64-darwin)
|
73
141
|
racc (~> 1.4)
|
74
|
-
nokogiri (1.18.
|
142
|
+
nokogiri (1.18.8-x86_64-darwin)
|
75
143
|
racc (~> 1.4)
|
76
|
-
nokogiri (1.18.
|
144
|
+
nokogiri (1.18.8-x86_64-linux-gnu)
|
77
145
|
racc (~> 1.4)
|
78
|
-
parallel (1.
|
79
|
-
parser (3.3.
|
146
|
+
parallel (1.27.0)
|
147
|
+
parser (3.3.8.0)
|
80
148
|
ast (~> 2.4.1)
|
81
149
|
racc
|
82
|
-
phlex (
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
nokogiri (~> 1.13)
|
88
|
-
phlex (>= 0.5)
|
150
|
+
phlex (2.2.1)
|
151
|
+
zeitwerk (~> 2.7)
|
152
|
+
phlex-rails (2.2.0)
|
153
|
+
phlex (~> 2.2.1)
|
154
|
+
railties (>= 7.1, < 9)
|
89
155
|
pp (0.6.2)
|
90
156
|
prettyprint
|
91
157
|
prettyprint (0.2.0)
|
158
|
+
prism (1.4.0)
|
92
159
|
psych (5.2.3)
|
93
160
|
date
|
94
161
|
stringio
|
95
162
|
racc (1.8.1)
|
96
|
-
rack (3.1.
|
163
|
+
rack (3.1.13)
|
97
164
|
rack-session (2.1.0)
|
98
165
|
base64 (>= 0.1.0)
|
99
166
|
rack (>= 3.0.0)
|
@@ -101,6 +168,20 @@ GEM
|
|
101
168
|
rack (>= 1.3)
|
102
169
|
rackup (2.2.1)
|
103
170
|
rack (>= 3)
|
171
|
+
rails (8.0.2)
|
172
|
+
actioncable (= 8.0.2)
|
173
|
+
actionmailbox (= 8.0.2)
|
174
|
+
actionmailer (= 8.0.2)
|
175
|
+
actionpack (= 8.0.2)
|
176
|
+
actiontext (= 8.0.2)
|
177
|
+
actionview (= 8.0.2)
|
178
|
+
activejob (= 8.0.2)
|
179
|
+
activemodel (= 8.0.2)
|
180
|
+
activerecord (= 8.0.2)
|
181
|
+
activestorage (= 8.0.2)
|
182
|
+
activesupport (= 8.0.2)
|
183
|
+
bundler (>= 1.15.0)
|
184
|
+
railties (= 8.0.2)
|
104
185
|
rails-dom-testing (2.2.0)
|
105
186
|
activesupport (>= 5.0.0)
|
106
187
|
minitest
|
@@ -108,9 +189,9 @@ GEM
|
|
108
189
|
rails-html-sanitizer (1.6.2)
|
109
190
|
loofah (~> 2.21)
|
110
191
|
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)
|
111
|
-
railties (8.0.
|
112
|
-
actionpack (= 8.0.
|
113
|
-
activesupport (= 8.0.
|
192
|
+
railties (8.0.2)
|
193
|
+
actionpack (= 8.0.2)
|
194
|
+
activesupport (= 8.0.2)
|
114
195
|
irb (~> 1.13)
|
115
196
|
rackup (>= 1.0.0)
|
116
197
|
rake (>= 12.2)
|
@@ -118,36 +199,43 @@ GEM
|
|
118
199
|
zeitwerk (~> 2.6)
|
119
200
|
rainbow (3.1.1)
|
120
201
|
rake (13.2.1)
|
121
|
-
rdoc (6.
|
202
|
+
rdoc (6.13.1)
|
122
203
|
psych (>= 4.0.0)
|
123
204
|
regexp_parser (2.10.0)
|
124
|
-
reline (0.6.
|
205
|
+
reline (0.6.1)
|
125
206
|
io-console (~> 0.5)
|
126
|
-
rubocop (1.
|
207
|
+
rubocop (1.75.3)
|
127
208
|
json (~> 2.3)
|
128
|
-
language_server-protocol (
|
209
|
+
language_server-protocol (~> 3.17.0.2)
|
210
|
+
lint_roller (~> 1.1.0)
|
129
211
|
parallel (~> 1.10)
|
130
212
|
parser (>= 3.3.0.2)
|
131
213
|
rainbow (>= 2.2.2, < 4.0)
|
132
214
|
regexp_parser (>= 2.9.3, < 3.0)
|
133
|
-
rubocop-ast (>= 1.
|
215
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
134
216
|
ruby-progressbar (~> 1.7)
|
135
217
|
unicode-display_width (>= 2.4.0, < 4.0)
|
136
|
-
rubocop-ast (1.
|
137
|
-
parser (>= 3.3.
|
218
|
+
rubocop-ast (1.44.1)
|
219
|
+
parser (>= 3.3.7.2)
|
220
|
+
prism (~> 1.4)
|
138
221
|
ruby-progressbar (1.13.0)
|
139
222
|
securerandom (0.4.1)
|
140
|
-
stringio (3.1.
|
223
|
+
stringio (3.1.7)
|
141
224
|
sus (0.32.0)
|
142
225
|
thor (1.3.2)
|
226
|
+
timeout (0.4.3)
|
143
227
|
tzinfo (2.0.6)
|
144
228
|
concurrent-ruby (~> 1.0)
|
145
229
|
unicode-display_width (3.1.4)
|
146
230
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
147
231
|
unicode-emoji (4.0.4)
|
148
|
-
uri (1.0.
|
232
|
+
uri (1.0.3)
|
149
233
|
useragent (0.16.11)
|
150
|
-
|
234
|
+
websocket-driver (0.7.7)
|
235
|
+
base64
|
236
|
+
websocket-extensions (>= 0.1.0)
|
237
|
+
websocket-extensions (0.1.5)
|
238
|
+
zeitwerk (2.7.2)
|
151
239
|
|
152
240
|
PLATFORMS
|
153
241
|
arm64-darwin-22
|
@@ -157,9 +245,9 @@ PLATFORMS
|
|
157
245
|
x86_64-linux
|
158
246
|
|
159
247
|
DEPENDENCIES
|
248
|
+
appraisal
|
160
249
|
combustion
|
161
250
|
debug
|
162
|
-
phlex-testing-nokogiri
|
163
251
|
phlexible!
|
164
252
|
rake (~> 13.0)
|
165
253
|
rubocop (~> 1.55)
|
data/README.md
CHANGED
@@ -263,7 +263,26 @@ Then call the `page_title` method in the `<head>` of your page.
|
|
263
263
|
|
264
264
|
## Development
|
265
265
|
|
266
|
-
After checking out the repo,
|
266
|
+
After checking out the repo, install dependencies with:
|
267
|
+
|
268
|
+
```bash
|
269
|
+
bin/setup
|
270
|
+
```
|
271
|
+
|
272
|
+
This gem supports varios major Phlex versions, as defined in the `Appraisal` file.
|
273
|
+
|
274
|
+
To run tests for all supported Phlex versions:
|
275
|
+
|
276
|
+
```
|
277
|
+
bundle exec appraisal sus
|
278
|
+
```
|
279
|
+
|
280
|
+
To run tests for a specific Phlex versions, call:
|
281
|
+
|
282
|
+
```bash
|
283
|
+
bundle exec appraisal phlex-1 sus
|
284
|
+
bundle exec appraisal phlex-2 sus
|
285
|
+
```
|
267
286
|
|
268
287
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
269
288
|
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RenderHelper
|
4
|
+
def render_to_html(component)
|
5
|
+
view_context.render(component)
|
6
|
+
end
|
7
|
+
|
8
|
+
def render_to_nokogiri_fragment(...)
|
9
|
+
html = render_to_html(...)
|
10
|
+
Nokogiri::HTML5.fragment(html)
|
11
|
+
end
|
12
|
+
|
13
|
+
def render_to_nokogiri_document(...)
|
14
|
+
html = render_to_html(...)
|
15
|
+
Nokogiri::HTML5(html)
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
def view_context
|
21
|
+
controller.view_context
|
22
|
+
end
|
23
|
+
|
24
|
+
def controller
|
25
|
+
@controller ||= ActionView::TestCase::TestController.new
|
26
|
+
end
|
27
|
+
end
|
data/config/sus.rb
CHANGED
data/fixtures/rails_helper.rb
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal"
|
6
|
+
gem "combustion"
|
7
|
+
gem "debug"
|
8
|
+
gem "rake", "~> 13.0"
|
9
|
+
gem "rubocop", "~> 1.55"
|
10
|
+
gem "sus"
|
11
|
+
gem "phlex", ">= 1.10.0", "< 2.0.0"
|
12
|
+
gem "phlex-rails", ">= 1.2.1", "< 2.0.0"
|
13
|
+
|
14
|
+
gemspec path: "../"
|
@@ -0,0 +1,253 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
phlexible (2.2.0)
|
5
|
+
phlex (>= 1.10.0, < 3.0.0)
|
6
|
+
phlex-rails (>= 1.2.0, < 3.0.0)
|
7
|
+
rails (>= 7.2.0, < 9.0.0)
|
8
|
+
zeitwerk (~> 2.7.2)
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
actioncable (8.0.2)
|
14
|
+
actionpack (= 8.0.2)
|
15
|
+
activesupport (= 8.0.2)
|
16
|
+
nio4r (~> 2.0)
|
17
|
+
websocket-driver (>= 0.6.1)
|
18
|
+
zeitwerk (~> 2.6)
|
19
|
+
actionmailbox (8.0.2)
|
20
|
+
actionpack (= 8.0.2)
|
21
|
+
activejob (= 8.0.2)
|
22
|
+
activerecord (= 8.0.2)
|
23
|
+
activestorage (= 8.0.2)
|
24
|
+
activesupport (= 8.0.2)
|
25
|
+
mail (>= 2.8.0)
|
26
|
+
actionmailer (8.0.2)
|
27
|
+
actionpack (= 8.0.2)
|
28
|
+
actionview (= 8.0.2)
|
29
|
+
activejob (= 8.0.2)
|
30
|
+
activesupport (= 8.0.2)
|
31
|
+
mail (>= 2.8.0)
|
32
|
+
rails-dom-testing (~> 2.2)
|
33
|
+
actionpack (8.0.2)
|
34
|
+
actionview (= 8.0.2)
|
35
|
+
activesupport (= 8.0.2)
|
36
|
+
nokogiri (>= 1.8.5)
|
37
|
+
rack (>= 2.2.4)
|
38
|
+
rack-session (>= 1.0.1)
|
39
|
+
rack-test (>= 0.6.3)
|
40
|
+
rails-dom-testing (~> 2.2)
|
41
|
+
rails-html-sanitizer (~> 1.6)
|
42
|
+
useragent (~> 0.16)
|
43
|
+
actiontext (8.0.2)
|
44
|
+
actionpack (= 8.0.2)
|
45
|
+
activerecord (= 8.0.2)
|
46
|
+
activestorage (= 8.0.2)
|
47
|
+
activesupport (= 8.0.2)
|
48
|
+
globalid (>= 0.6.0)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (8.0.2)
|
51
|
+
activesupport (= 8.0.2)
|
52
|
+
builder (~> 3.1)
|
53
|
+
erubi (~> 1.11)
|
54
|
+
rails-dom-testing (~> 2.2)
|
55
|
+
rails-html-sanitizer (~> 1.6)
|
56
|
+
activejob (8.0.2)
|
57
|
+
activesupport (= 8.0.2)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (8.0.2)
|
60
|
+
activesupport (= 8.0.2)
|
61
|
+
activerecord (8.0.2)
|
62
|
+
activemodel (= 8.0.2)
|
63
|
+
activesupport (= 8.0.2)
|
64
|
+
timeout (>= 0.4.0)
|
65
|
+
activestorage (8.0.2)
|
66
|
+
actionpack (= 8.0.2)
|
67
|
+
activejob (= 8.0.2)
|
68
|
+
activerecord (= 8.0.2)
|
69
|
+
activesupport (= 8.0.2)
|
70
|
+
marcel (~> 1.0)
|
71
|
+
activesupport (8.0.2)
|
72
|
+
base64
|
73
|
+
benchmark (>= 0.3)
|
74
|
+
bigdecimal
|
75
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
76
|
+
connection_pool (>= 2.2.5)
|
77
|
+
drb
|
78
|
+
i18n (>= 1.6, < 2)
|
79
|
+
logger (>= 1.4.2)
|
80
|
+
minitest (>= 5.1)
|
81
|
+
securerandom (>= 0.3)
|
82
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
83
|
+
uri (>= 0.13.1)
|
84
|
+
appraisal (2.5.0)
|
85
|
+
bundler
|
86
|
+
rake
|
87
|
+
thor (>= 0.14.0)
|
88
|
+
ast (2.4.3)
|
89
|
+
base64 (0.2.0)
|
90
|
+
benchmark (0.4.0)
|
91
|
+
bigdecimal (3.1.9)
|
92
|
+
builder (3.3.0)
|
93
|
+
combustion (1.5.0)
|
94
|
+
activesupport (>= 3.0.0)
|
95
|
+
railties (>= 3.0.0)
|
96
|
+
thor (>= 0.14.6)
|
97
|
+
concurrent-ruby (1.3.5)
|
98
|
+
connection_pool (2.5.1)
|
99
|
+
crass (1.0.6)
|
100
|
+
date (3.4.1)
|
101
|
+
debug (1.10.0)
|
102
|
+
irb (~> 1.10)
|
103
|
+
reline (>= 0.3.8)
|
104
|
+
drb (2.2.1)
|
105
|
+
erubi (1.13.1)
|
106
|
+
globalid (1.2.1)
|
107
|
+
activesupport (>= 6.1)
|
108
|
+
i18n (1.14.7)
|
109
|
+
concurrent-ruby (~> 1.0)
|
110
|
+
io-console (0.8.0)
|
111
|
+
irb (1.15.2)
|
112
|
+
pp (>= 0.6.0)
|
113
|
+
rdoc (>= 4.0.0)
|
114
|
+
reline (>= 0.4.2)
|
115
|
+
json (2.10.2)
|
116
|
+
language_server-protocol (3.17.0.4)
|
117
|
+
lint_roller (1.1.0)
|
118
|
+
logger (1.7.0)
|
119
|
+
loofah (2.24.0)
|
120
|
+
crass (~> 1.0.2)
|
121
|
+
nokogiri (>= 1.12.0)
|
122
|
+
mail (2.8.1)
|
123
|
+
mini_mime (>= 0.1.1)
|
124
|
+
net-imap
|
125
|
+
net-pop
|
126
|
+
net-smtp
|
127
|
+
marcel (1.0.4)
|
128
|
+
mini_mime (1.1.5)
|
129
|
+
minitest (5.25.5)
|
130
|
+
net-imap (0.5.7)
|
131
|
+
date
|
132
|
+
net-protocol
|
133
|
+
net-pop (0.1.2)
|
134
|
+
net-protocol
|
135
|
+
net-protocol (0.2.2)
|
136
|
+
timeout
|
137
|
+
net-smtp (0.5.1)
|
138
|
+
net-protocol
|
139
|
+
nio4r (2.7.4)
|
140
|
+
nokogiri (1.18.8-arm64-darwin)
|
141
|
+
racc (~> 1.4)
|
142
|
+
nokogiri (1.18.8-x86_64-linux-gnu)
|
143
|
+
racc (~> 1.4)
|
144
|
+
parallel (1.27.0)
|
145
|
+
parser (3.3.8.0)
|
146
|
+
ast (~> 2.4.1)
|
147
|
+
racc
|
148
|
+
phlex (2.0.0.rc2)
|
149
|
+
phlex-rails (2.0.0.rc2)
|
150
|
+
phlex (= 2.0.0.rc2)
|
151
|
+
railties (>= 6.1, < 9)
|
152
|
+
pp (0.6.2)
|
153
|
+
prettyprint
|
154
|
+
prettyprint (0.2.0)
|
155
|
+
prism (1.4.0)
|
156
|
+
psych (5.2.3)
|
157
|
+
date
|
158
|
+
stringio
|
159
|
+
racc (1.8.1)
|
160
|
+
rack (3.1.13)
|
161
|
+
rack-session (2.1.0)
|
162
|
+
base64 (>= 0.1.0)
|
163
|
+
rack (>= 3.0.0)
|
164
|
+
rack-test (2.2.0)
|
165
|
+
rack (>= 1.3)
|
166
|
+
rackup (2.2.1)
|
167
|
+
rack (>= 3)
|
168
|
+
rails (8.0.2)
|
169
|
+
actioncable (= 8.0.2)
|
170
|
+
actionmailbox (= 8.0.2)
|
171
|
+
actionmailer (= 8.0.2)
|
172
|
+
actionpack (= 8.0.2)
|
173
|
+
actiontext (= 8.0.2)
|
174
|
+
actionview (= 8.0.2)
|
175
|
+
activejob (= 8.0.2)
|
176
|
+
activemodel (= 8.0.2)
|
177
|
+
activerecord (= 8.0.2)
|
178
|
+
activestorage (= 8.0.2)
|
179
|
+
activesupport (= 8.0.2)
|
180
|
+
bundler (>= 1.15.0)
|
181
|
+
railties (= 8.0.2)
|
182
|
+
rails-dom-testing (2.2.0)
|
183
|
+
activesupport (>= 5.0.0)
|
184
|
+
minitest
|
185
|
+
nokogiri (>= 1.6)
|
186
|
+
rails-html-sanitizer (1.6.2)
|
187
|
+
loofah (~> 2.21)
|
188
|
+
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)
|
189
|
+
railties (8.0.2)
|
190
|
+
actionpack (= 8.0.2)
|
191
|
+
activesupport (= 8.0.2)
|
192
|
+
irb (~> 1.13)
|
193
|
+
rackup (>= 1.0.0)
|
194
|
+
rake (>= 12.2)
|
195
|
+
thor (~> 1.0, >= 1.2.2)
|
196
|
+
zeitwerk (~> 2.6)
|
197
|
+
rainbow (3.1.1)
|
198
|
+
rake (13.2.1)
|
199
|
+
rdoc (6.13.1)
|
200
|
+
psych (>= 4.0.0)
|
201
|
+
regexp_parser (2.10.0)
|
202
|
+
reline (0.6.1)
|
203
|
+
io-console (~> 0.5)
|
204
|
+
rubocop (1.75.3)
|
205
|
+
json (~> 2.3)
|
206
|
+
language_server-protocol (~> 3.17.0.2)
|
207
|
+
lint_roller (~> 1.1.0)
|
208
|
+
parallel (~> 1.10)
|
209
|
+
parser (>= 3.3.0.2)
|
210
|
+
rainbow (>= 2.2.2, < 4.0)
|
211
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
212
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
213
|
+
ruby-progressbar (~> 1.7)
|
214
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
215
|
+
rubocop-ast (1.44.1)
|
216
|
+
parser (>= 3.3.7.2)
|
217
|
+
prism (~> 1.4)
|
218
|
+
ruby-progressbar (1.13.0)
|
219
|
+
securerandom (0.4.1)
|
220
|
+
stringio (3.1.7)
|
221
|
+
sus (0.32.0)
|
222
|
+
thor (1.3.2)
|
223
|
+
timeout (0.4.3)
|
224
|
+
tzinfo (2.0.6)
|
225
|
+
concurrent-ruby (~> 1.0)
|
226
|
+
unicode-display_width (3.1.4)
|
227
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
228
|
+
unicode-emoji (4.0.4)
|
229
|
+
uri (1.0.3)
|
230
|
+
useragent (0.16.11)
|
231
|
+
websocket-driver (0.7.7)
|
232
|
+
base64
|
233
|
+
websocket-extensions (>= 0.1.0)
|
234
|
+
websocket-extensions (0.1.5)
|
235
|
+
zeitwerk (2.7.2)
|
236
|
+
|
237
|
+
PLATFORMS
|
238
|
+
arm64-darwin-24
|
239
|
+
x86_64-linux
|
240
|
+
|
241
|
+
DEPENDENCIES
|
242
|
+
appraisal
|
243
|
+
combustion
|
244
|
+
debug
|
245
|
+
phlex (>= 1.10.0, < 2.0.0)
|
246
|
+
phlex-rails (>= 1.2.1, < 2.0.0)
|
247
|
+
phlexible!
|
248
|
+
rake (~> 13.0)
|
249
|
+
rubocop (~> 1.55)
|
250
|
+
sus
|
251
|
+
|
252
|
+
BUNDLED WITH
|
253
|
+
2.4.1
|