search_rails 2.0.2 → 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/.node-version +1 -1
- data/.npm-version +1 -1
- data/.rubocop.yml +23 -1
- data/.ruby-version +1 -1
- data/.tool-versions +2 -3
- data/Gemfile +1 -1
- data/Gemfile.lock +180 -166
- data/VERSION +1 -1
- data/bin/bundle +123 -0
- data/bin/bundle-audit +31 -0
- data/bin/bundler-audit +31 -0
- data/bin/dorian +31 -0
- data/bin/rubocop +31 -0
- data/bin/test +3 -0
- data/lib/search.rb +79 -76
- data/package-lock.json +4 -4
- data/package.json +3 -3
- data/search_rails.gemspec +3 -3
- metadata +13 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 975574cccba4554124a93f491bc64035e18f675f9431b3b151071cc437f6474c
|
|
4
|
+
data.tar.gz: 555a0da1753da34f84f472a7e664d785a90b587ef027c8033a382d1a5debdc77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b391a9f5b25785323b1c7c26a38645e86864478735447b9f4164a2925f1280ebf9bd05ea68785c2c6bb68a7d8db1b8cf6c8c11135c315c1d618949005faed496
|
|
7
|
+
data.tar.gz: 9bafe4539ee30113b25f833bb1e8a048141e210e2faa3cb27524b87142281629242f527ad575011c0c2aa5c4774abd9e05cbf4d27b196ea10f034636c97da3be
|
data/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
26.3.1
|
data/.npm-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
11.
|
|
1
|
+
11.17.0
|
data/.rubocop.yml
CHANGED
|
@@ -5,15 +5,21 @@ AllCops:
|
|
|
5
5
|
- "**/vendor/**/*"
|
|
6
6
|
- "**/db/schema.rb"
|
|
7
7
|
NewCops: enable
|
|
8
|
-
TargetRubyVersion:
|
|
8
|
+
TargetRubyVersion: 4.0
|
|
9
9
|
Layout/ClosingHeredocIndentation:
|
|
10
10
|
Enabled: false
|
|
11
|
+
Layout/ElseAlignment:
|
|
12
|
+
Enabled: false
|
|
13
|
+
Layout/EndAlignment:
|
|
14
|
+
Enabled: false
|
|
11
15
|
Layout/FirstArgumentIndentation:
|
|
12
16
|
Enabled: false
|
|
13
17
|
Layout/HashAlignment:
|
|
14
18
|
Enabled: false
|
|
15
19
|
Layout/HeredocIndentation:
|
|
16
20
|
Enabled: false
|
|
21
|
+
Layout/IndentationWidth:
|
|
22
|
+
Enabled: false
|
|
17
23
|
Layout/LineEndStringConcatenationIndentation:
|
|
18
24
|
Enabled: false
|
|
19
25
|
Layout/LineLength:
|
|
@@ -22,14 +28,20 @@ Layout/MultilineMethodCallIndentation:
|
|
|
22
28
|
Enabled: false
|
|
23
29
|
Layout/MultilineOperationIndentation:
|
|
24
30
|
Enabled: false
|
|
31
|
+
Layout/SpaceAroundKeyword:
|
|
32
|
+
Enabled: false
|
|
25
33
|
Layout/SpaceInsideHashLiteralBraces:
|
|
26
34
|
Enabled: false
|
|
35
|
+
Lint/ConstantDefinitionInBlock:
|
|
36
|
+
Enabled: false
|
|
27
37
|
Lint/EmptyClass:
|
|
28
38
|
Enabled: false
|
|
29
39
|
Lint/MissingSuper:
|
|
30
40
|
Enabled: false
|
|
31
41
|
Lint/PercentStringArray:
|
|
32
42
|
Enabled: false
|
|
43
|
+
Lint/SafeNavigationChain:
|
|
44
|
+
Enabled: false
|
|
33
45
|
Lint/ShadowingOuterLocalVariable:
|
|
34
46
|
Enabled: false
|
|
35
47
|
Lint/SuppressedException:
|
|
@@ -44,6 +56,8 @@ Metrics/BlockLength:
|
|
|
44
56
|
Enabled: false
|
|
45
57
|
Metrics/ClassLength:
|
|
46
58
|
Enabled: false
|
|
59
|
+
Metrics/CollectionLiteralLength:
|
|
60
|
+
Enabled: false
|
|
47
61
|
Metrics/CyclomaticComplexity:
|
|
48
62
|
Enabled: false
|
|
49
63
|
Metrics/MethodLength:
|
|
@@ -58,6 +72,8 @@ Naming/FileName:
|
|
|
58
72
|
Enabled: false
|
|
59
73
|
Naming/MethodParameterName:
|
|
60
74
|
Enabled: false
|
|
75
|
+
Naming/PredicateMethod:
|
|
76
|
+
Enabled: false
|
|
61
77
|
Naming/VariableNumber:
|
|
62
78
|
Enabled: false
|
|
63
79
|
Performance/Sum:
|
|
@@ -80,6 +96,8 @@ RSpec/NoExpectationExample:
|
|
|
80
96
|
Enabled: false
|
|
81
97
|
RSpec/PendingWithoutReason:
|
|
82
98
|
Enabled: false
|
|
99
|
+
Rails/BulkChangeTable:
|
|
100
|
+
Enabled: false
|
|
83
101
|
Rails/Delegate:
|
|
84
102
|
Enabled: false
|
|
85
103
|
Rails/DynamicFindBy:
|
|
@@ -94,6 +112,8 @@ Rails/Presence:
|
|
|
94
112
|
Enabled: false
|
|
95
113
|
Rails/Present:
|
|
96
114
|
Enabled: false
|
|
115
|
+
Rails/SkipsModelValidations:
|
|
116
|
+
Enabled: false
|
|
97
117
|
Rails/ThreeStateBooleanColumn:
|
|
98
118
|
Enabled: false
|
|
99
119
|
Rails/TimeZone:
|
|
@@ -110,6 +130,8 @@ Style/EmptyMethod:
|
|
|
110
130
|
Enabled: false
|
|
111
131
|
Style/IfUnlessModifier:
|
|
112
132
|
Enabled: false
|
|
133
|
+
Style/Lambda:
|
|
134
|
+
Enabled: false
|
|
113
135
|
Style/MultilineBlockChain:
|
|
114
136
|
Enabled: false
|
|
115
137
|
Style/NestedTernaryOperator:
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4.0.5
|
data/.tool-versions
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
ruby
|
|
2
|
-
|
|
3
|
-
nodejs 23.11.0
|
|
1
|
+
ruby 4.0.5
|
|
2
|
+
nodejs 26.3.1
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
search_rails (
|
|
4
|
+
search_rails (3.0.0)
|
|
5
5
|
chronic
|
|
6
6
|
query-ruby
|
|
7
7
|
rails
|
|
@@ -10,29 +10,31 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
action_text-trix (2.1.19)
|
|
14
|
+
railties
|
|
15
|
+
actioncable (8.1.3)
|
|
16
|
+
actionpack (= 8.1.3)
|
|
17
|
+
activesupport (= 8.1.3)
|
|
16
18
|
nio4r (~> 2.0)
|
|
17
19
|
websocket-driver (>= 0.6.1)
|
|
18
20
|
zeitwerk (~> 2.6)
|
|
19
|
-
actionmailbox (8.
|
|
20
|
-
actionpack (= 8.
|
|
21
|
-
activejob (= 8.
|
|
22
|
-
activerecord (= 8.
|
|
23
|
-
activestorage (= 8.
|
|
24
|
-
activesupport (= 8.
|
|
21
|
+
actionmailbox (8.1.3)
|
|
22
|
+
actionpack (= 8.1.3)
|
|
23
|
+
activejob (= 8.1.3)
|
|
24
|
+
activerecord (= 8.1.3)
|
|
25
|
+
activestorage (= 8.1.3)
|
|
26
|
+
activesupport (= 8.1.3)
|
|
25
27
|
mail (>= 2.8.0)
|
|
26
|
-
actionmailer (8.
|
|
27
|
-
actionpack (= 8.
|
|
28
|
-
actionview (= 8.
|
|
29
|
-
activejob (= 8.
|
|
30
|
-
activesupport (= 8.
|
|
28
|
+
actionmailer (8.1.3)
|
|
29
|
+
actionpack (= 8.1.3)
|
|
30
|
+
actionview (= 8.1.3)
|
|
31
|
+
activejob (= 8.1.3)
|
|
32
|
+
activesupport (= 8.1.3)
|
|
31
33
|
mail (>= 2.8.0)
|
|
32
34
|
rails-dom-testing (~> 2.2)
|
|
33
|
-
actionpack (8.
|
|
34
|
-
actionview (= 8.
|
|
35
|
-
activesupport (= 8.
|
|
35
|
+
actionpack (8.1.3)
|
|
36
|
+
actionview (= 8.1.3)
|
|
37
|
+
activesupport (= 8.1.3)
|
|
36
38
|
nokogiri (>= 1.8.5)
|
|
37
39
|
rack (>= 2.2.4)
|
|
38
40
|
rack-session (>= 1.0.1)
|
|
@@ -40,69 +42,69 @@ GEM
|
|
|
40
42
|
rails-dom-testing (~> 2.2)
|
|
41
43
|
rails-html-sanitizer (~> 1.6)
|
|
42
44
|
useragent (~> 0.16)
|
|
43
|
-
actiontext (8.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
actiontext (8.1.3)
|
|
46
|
+
action_text-trix (~> 2.1.15)
|
|
47
|
+
actionpack (= 8.1.3)
|
|
48
|
+
activerecord (= 8.1.3)
|
|
49
|
+
activestorage (= 8.1.3)
|
|
50
|
+
activesupport (= 8.1.3)
|
|
48
51
|
globalid (>= 0.6.0)
|
|
49
52
|
nokogiri (>= 1.8.5)
|
|
50
|
-
actionview (8.
|
|
51
|
-
activesupport (= 8.
|
|
53
|
+
actionview (8.1.3)
|
|
54
|
+
activesupport (= 8.1.3)
|
|
52
55
|
builder (~> 3.1)
|
|
53
56
|
erubi (~> 1.11)
|
|
54
57
|
rails-dom-testing (~> 2.2)
|
|
55
58
|
rails-html-sanitizer (~> 1.6)
|
|
56
|
-
activejob (8.
|
|
57
|
-
activesupport (= 8.
|
|
59
|
+
activejob (8.1.3)
|
|
60
|
+
activesupport (= 8.1.3)
|
|
58
61
|
globalid (>= 0.3.6)
|
|
59
|
-
activemodel (8.
|
|
60
|
-
activesupport (= 8.
|
|
61
|
-
activerecord (8.
|
|
62
|
-
activemodel (= 8.
|
|
63
|
-
activesupport (= 8.
|
|
62
|
+
activemodel (8.1.3)
|
|
63
|
+
activesupport (= 8.1.3)
|
|
64
|
+
activerecord (8.1.3)
|
|
65
|
+
activemodel (= 8.1.3)
|
|
66
|
+
activesupport (= 8.1.3)
|
|
64
67
|
timeout (>= 0.4.0)
|
|
65
|
-
activestorage (8.
|
|
66
|
-
actionpack (= 8.
|
|
67
|
-
activejob (= 8.
|
|
68
|
-
activerecord (= 8.
|
|
69
|
-
activesupport (= 8.
|
|
68
|
+
activestorage (8.1.3)
|
|
69
|
+
actionpack (= 8.1.3)
|
|
70
|
+
activejob (= 8.1.3)
|
|
71
|
+
activerecord (= 8.1.3)
|
|
72
|
+
activesupport (= 8.1.3)
|
|
70
73
|
marcel (~> 1.0)
|
|
71
|
-
activesupport (8.
|
|
74
|
+
activesupport (8.1.3)
|
|
72
75
|
base64
|
|
73
|
-
benchmark (>= 0.3)
|
|
74
76
|
bigdecimal
|
|
75
77
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
76
78
|
connection_pool (>= 2.2.5)
|
|
77
79
|
drb
|
|
78
80
|
i18n (>= 1.6, < 2)
|
|
81
|
+
json
|
|
79
82
|
logger (>= 1.4.2)
|
|
80
83
|
minitest (>= 5.1)
|
|
81
84
|
securerandom (>= 0.3)
|
|
82
85
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
83
86
|
uri (>= 0.13.1)
|
|
84
|
-
addressable (2.
|
|
85
|
-
public_suffix (>= 2.0.2, <
|
|
87
|
+
addressable (2.9.0)
|
|
88
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
86
89
|
ast (2.4.3)
|
|
87
|
-
base64 (0.
|
|
88
|
-
|
|
89
|
-
bigdecimal (3.1.9)
|
|
90
|
+
base64 (0.3.0)
|
|
91
|
+
bigdecimal (4.1.2)
|
|
90
92
|
builder (3.3.0)
|
|
91
|
-
bundler-audit (0.9.
|
|
92
|
-
bundler (>= 1.2.0
|
|
93
|
+
bundler-audit (0.9.3)
|
|
94
|
+
bundler (>= 1.2.0)
|
|
93
95
|
thor (~> 1.0)
|
|
94
96
|
chronic (0.10.2)
|
|
95
97
|
cmdparse (3.0.7)
|
|
96
|
-
concurrent-ruby (1.3.
|
|
97
|
-
connection_pool (
|
|
98
|
-
crack (1.0.
|
|
98
|
+
concurrent-ruby (1.3.7)
|
|
99
|
+
connection_pool (3.0.2)
|
|
100
|
+
crack (1.0.1)
|
|
99
101
|
bigdecimal
|
|
100
102
|
rexml
|
|
101
103
|
crass (1.0.6)
|
|
102
|
-
csv (3.3.
|
|
103
|
-
date (3.
|
|
104
|
-
diff-lcs (1.6.
|
|
105
|
-
dorian (2.6.
|
|
104
|
+
csv (3.3.5)
|
|
105
|
+
date (3.5.1)
|
|
106
|
+
diff-lcs (1.6.2)
|
|
107
|
+
dorian (2.6.8)
|
|
106
108
|
csv
|
|
107
109
|
dorian-arguments
|
|
108
110
|
dorian-eval
|
|
@@ -120,66 +122,69 @@ GEM
|
|
|
120
122
|
terminal-table
|
|
121
123
|
w_syntax_tree-erb
|
|
122
124
|
yaml
|
|
123
|
-
dorian-arguments (1.2.
|
|
124
|
-
bigdecimal
|
|
125
|
-
dorian-eval (1.5.
|
|
126
|
-
yaml
|
|
127
|
-
dorian-progress (1.1.
|
|
128
|
-
ruby-progressbar
|
|
129
|
-
dorian-to_struct (2.0.
|
|
130
|
-
drb (2.2.
|
|
125
|
+
dorian-arguments (1.2.3)
|
|
126
|
+
bigdecimal (>= 3.1, < 5)
|
|
127
|
+
dorian-eval (1.5.1)
|
|
128
|
+
yaml (>= 0.3, < 1)
|
|
129
|
+
dorian-progress (1.1.3)
|
|
130
|
+
ruby-progressbar (>= 1.13, < 2)
|
|
131
|
+
dorian-to_struct (2.0.3)
|
|
132
|
+
drb (2.2.3)
|
|
133
|
+
erb (6.0.4)
|
|
131
134
|
erubi (1.13.1)
|
|
132
135
|
geom2d (0.4.1)
|
|
133
|
-
git (3.
|
|
136
|
+
git (4.3.2)
|
|
134
137
|
activesupport (>= 5.0)
|
|
135
138
|
addressable (~> 2.8)
|
|
136
|
-
process_executer (~>
|
|
139
|
+
process_executer (~> 4.0)
|
|
137
140
|
rchardet (~> 1.9)
|
|
138
|
-
globalid (1.
|
|
141
|
+
globalid (1.4.0)
|
|
139
142
|
activesupport (>= 6.1)
|
|
140
|
-
haml (
|
|
143
|
+
haml (7.2.0)
|
|
141
144
|
temple (>= 0.8.2)
|
|
142
145
|
thor
|
|
143
146
|
tilt
|
|
144
|
-
hashdiff (1.1
|
|
145
|
-
hexapdf (1.
|
|
147
|
+
hashdiff (1.2.1)
|
|
148
|
+
hexapdf (1.9.1)
|
|
146
149
|
cmdparse (~> 3.0, >= 3.0.3)
|
|
147
150
|
geom2d (~> 0.4, >= 0.4.1)
|
|
148
151
|
openssl (>= 2.2.1)
|
|
149
152
|
strscan (>= 3.1.2)
|
|
150
|
-
i18n (1.
|
|
153
|
+
i18n (1.15.2)
|
|
151
154
|
concurrent-ruby (~> 1.0)
|
|
152
|
-
io-console (0.8.
|
|
153
|
-
irb (1.
|
|
155
|
+
io-console (0.8.2)
|
|
156
|
+
irb (1.18.0)
|
|
154
157
|
pp (>= 0.6.0)
|
|
158
|
+
prism (>= 1.3.0)
|
|
155
159
|
rdoc (>= 4.0.0)
|
|
156
160
|
reline (>= 0.4.2)
|
|
157
|
-
json (2.
|
|
161
|
+
json (2.20.0)
|
|
158
162
|
language-ruby (1.2.0)
|
|
159
163
|
dorian-arguments
|
|
160
164
|
zeitwerk
|
|
161
|
-
language_server-protocol (3.17.0.
|
|
162
|
-
libv8-node (
|
|
163
|
-
libv8-node (
|
|
164
|
-
libv8-node (23.6.1.0-x86_64-linux)
|
|
165
|
+
language_server-protocol (3.17.0.5)
|
|
166
|
+
libv8-node (24.12.0.1-arm64-darwin)
|
|
167
|
+
libv8-node (24.12.0.1-x86_64-linux)
|
|
165
168
|
lint_roller (1.1.0)
|
|
166
169
|
logger (1.7.0)
|
|
167
|
-
loofah (2.
|
|
170
|
+
loofah (2.25.1)
|
|
168
171
|
crass (~> 1.0.2)
|
|
169
172
|
nokogiri (>= 1.12.0)
|
|
170
|
-
mail (2.
|
|
173
|
+
mail (2.9.0)
|
|
174
|
+
logger
|
|
171
175
|
mini_mime (>= 0.1.1)
|
|
172
176
|
net-imap
|
|
173
177
|
net-pop
|
|
174
178
|
net-smtp
|
|
175
|
-
marcel (1.
|
|
179
|
+
marcel (1.2.1)
|
|
176
180
|
mini_mime (1.1.5)
|
|
177
|
-
mini_racer (0.
|
|
178
|
-
libv8-node (~>
|
|
179
|
-
minitest (
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
mini_racer (0.21.4)
|
|
182
|
+
libv8-node (~> 24.12.0.1)
|
|
183
|
+
minitest (6.0.6)
|
|
184
|
+
drb (~> 2.0)
|
|
185
|
+
prism (~> 1.5)
|
|
186
|
+
mustermann (3.1.1)
|
|
187
|
+
net-imap (0.6.4.1)
|
|
183
188
|
date
|
|
184
189
|
net-protocol
|
|
185
190
|
net-pop (0.1.2)
|
|
@@ -188,28 +193,29 @@ GEM
|
|
|
188
193
|
timeout
|
|
189
194
|
net-smtp (0.5.1)
|
|
190
195
|
net-protocol
|
|
191
|
-
nio4r (2.7.
|
|
192
|
-
nokogiri (1.
|
|
196
|
+
nio4r (2.7.5)
|
|
197
|
+
nokogiri (1.19.4-arm64-darwin)
|
|
193
198
|
racc (~> 1.4)
|
|
194
|
-
nokogiri (1.
|
|
199
|
+
nokogiri (1.19.4-x86_64-linux-gnu)
|
|
195
200
|
racc (~> 1.4)
|
|
196
|
-
openssl (
|
|
197
|
-
ostruct (0.6.
|
|
198
|
-
parallel (1.
|
|
199
|
-
parser (3.3.
|
|
201
|
+
openssl (4.0.2)
|
|
202
|
+
ostruct (0.6.3)
|
|
203
|
+
parallel (2.1.0)
|
|
204
|
+
parser (3.3.11.1)
|
|
200
205
|
ast (~> 2.4.1)
|
|
201
206
|
racc
|
|
202
|
-
pp (0.6.
|
|
207
|
+
pp (0.6.4)
|
|
203
208
|
prettyprint
|
|
204
209
|
prettier_print (1.2.1)
|
|
205
210
|
prettyprint (0.2.0)
|
|
206
|
-
prism (1.
|
|
207
|
-
process_executer (
|
|
208
|
-
|
|
211
|
+
prism (1.9.0)
|
|
212
|
+
process_executer (4.0.4)
|
|
213
|
+
track_open_instances (~> 0.1)
|
|
214
|
+
psych (5.4.0)
|
|
209
215
|
date
|
|
210
216
|
stringio
|
|
211
|
-
public_suffix (
|
|
212
|
-
query-ruby (1.1.
|
|
217
|
+
public_suffix (7.0.5)
|
|
218
|
+
query-ruby (1.1.2)
|
|
213
219
|
activesupport
|
|
214
220
|
bigdecimal
|
|
215
221
|
dorian-arguments
|
|
@@ -217,123 +223,128 @@ GEM
|
|
|
217
223
|
language-ruby
|
|
218
224
|
zeitwerk
|
|
219
225
|
racc (1.8.1)
|
|
220
|
-
rack (3.
|
|
221
|
-
rack-protection (4.
|
|
226
|
+
rack (3.2.6)
|
|
227
|
+
rack-protection (4.2.1)
|
|
222
228
|
base64 (>= 0.1.0)
|
|
223
229
|
logger (>= 1.6.0)
|
|
224
230
|
rack (>= 3.0.0, < 4)
|
|
225
|
-
rack-session (2.1.
|
|
231
|
+
rack-session (2.1.2)
|
|
226
232
|
base64 (>= 0.1.0)
|
|
227
233
|
rack (>= 3.0.0)
|
|
228
234
|
rack-test (2.2.0)
|
|
229
235
|
rack (>= 1.3)
|
|
230
|
-
rackup (2.
|
|
236
|
+
rackup (2.3.1)
|
|
231
237
|
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.
|
|
238
|
+
rails (8.1.3)
|
|
239
|
+
actioncable (= 8.1.3)
|
|
240
|
+
actionmailbox (= 8.1.3)
|
|
241
|
+
actionmailer (= 8.1.3)
|
|
242
|
+
actionpack (= 8.1.3)
|
|
243
|
+
actiontext (= 8.1.3)
|
|
244
|
+
actionview (= 8.1.3)
|
|
245
|
+
activejob (= 8.1.3)
|
|
246
|
+
activemodel (= 8.1.3)
|
|
247
|
+
activerecord (= 8.1.3)
|
|
248
|
+
activestorage (= 8.1.3)
|
|
249
|
+
activesupport (= 8.1.3)
|
|
244
250
|
bundler (>= 1.15.0)
|
|
245
|
-
railties (= 8.
|
|
246
|
-
rails-dom-testing (2.
|
|
251
|
+
railties (= 8.1.3)
|
|
252
|
+
rails-dom-testing (2.3.0)
|
|
247
253
|
activesupport (>= 5.0.0)
|
|
248
254
|
minitest
|
|
249
255
|
nokogiri (>= 1.6)
|
|
250
|
-
rails-html-sanitizer (1.
|
|
251
|
-
loofah (~> 2.
|
|
256
|
+
rails-html-sanitizer (1.7.0)
|
|
257
|
+
loofah (~> 2.25)
|
|
252
258
|
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.
|
|
259
|
+
railties (8.1.3)
|
|
260
|
+
actionpack (= 8.1.3)
|
|
261
|
+
activesupport (= 8.1.3)
|
|
256
262
|
irb (~> 1.13)
|
|
257
263
|
rackup (>= 1.0.0)
|
|
258
264
|
rake (>= 12.2)
|
|
259
265
|
thor (~> 1.0, >= 1.2.2)
|
|
266
|
+
tsort (>= 0.2)
|
|
260
267
|
zeitwerk (~> 2.6)
|
|
261
268
|
rainbow (3.1.1)
|
|
262
|
-
rake (13.2
|
|
263
|
-
rchardet (1.
|
|
264
|
-
rdoc (
|
|
269
|
+
rake (13.4.2)
|
|
270
|
+
rchardet (1.10.2)
|
|
271
|
+
rdoc (7.2.0)
|
|
272
|
+
erb
|
|
265
273
|
psych (>= 4.0.0)
|
|
266
|
-
|
|
267
|
-
|
|
274
|
+
tsort
|
|
275
|
+
regexp_parser (2.12.0)
|
|
276
|
+
reline (0.6.3)
|
|
268
277
|
io-console (~> 0.5)
|
|
269
|
-
rexml (3.4.
|
|
270
|
-
rspec (3.13.
|
|
278
|
+
rexml (3.4.4)
|
|
279
|
+
rspec (3.13.2)
|
|
271
280
|
rspec-core (~> 3.13.0)
|
|
272
281
|
rspec-expectations (~> 3.13.0)
|
|
273
282
|
rspec-mocks (~> 3.13.0)
|
|
274
|
-
rspec-core (3.13.
|
|
283
|
+
rspec-core (3.13.6)
|
|
275
284
|
rspec-support (~> 3.13.0)
|
|
276
|
-
rspec-expectations (3.13.
|
|
285
|
+
rspec-expectations (3.13.5)
|
|
277
286
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
278
287
|
rspec-support (~> 3.13.0)
|
|
279
|
-
rspec-mocks (3.13.
|
|
288
|
+
rspec-mocks (3.13.8)
|
|
280
289
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
281
290
|
rspec-support (~> 3.13.0)
|
|
282
|
-
rspec-support (3.13.
|
|
283
|
-
rubocop (1.
|
|
291
|
+
rspec-support (3.13.7)
|
|
292
|
+
rubocop (1.88.0)
|
|
284
293
|
json (~> 2.3)
|
|
285
294
|
language_server-protocol (~> 3.17.0.2)
|
|
286
295
|
lint_roller (~> 1.1.0)
|
|
287
|
-
parallel (
|
|
296
|
+
parallel (>= 1.10)
|
|
288
297
|
parser (>= 3.3.0.2)
|
|
289
298
|
rainbow (>= 2.2.2, < 4.0)
|
|
290
299
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
291
|
-
rubocop-ast (>= 1.
|
|
300
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
292
301
|
ruby-progressbar (~> 1.7)
|
|
293
302
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
294
|
-
rubocop-ast (1.
|
|
303
|
+
rubocop-ast (1.49.1)
|
|
295
304
|
parser (>= 3.3.7.2)
|
|
296
|
-
prism (~> 1.
|
|
297
|
-
rubocop-capybara (
|
|
305
|
+
prism (~> 1.7)
|
|
306
|
+
rubocop-capybara (3.0.0)
|
|
298
307
|
lint_roller (~> 1.1)
|
|
299
|
-
rubocop (~> 1.
|
|
300
|
-
rubocop-factory_bot (2.
|
|
308
|
+
rubocop (~> 1.81)
|
|
309
|
+
rubocop-factory_bot (2.28.0)
|
|
301
310
|
lint_roller (~> 1.1)
|
|
302
311
|
rubocop (~> 1.72, >= 1.72.1)
|
|
303
|
-
rubocop-performance (1.
|
|
312
|
+
rubocop-performance (1.26.1)
|
|
304
313
|
lint_roller (~> 1.1)
|
|
305
314
|
rubocop (>= 1.75.0, < 2.0)
|
|
306
|
-
rubocop-ast (>= 1.
|
|
307
|
-
rubocop-rails (2.
|
|
315
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
316
|
+
rubocop-rails (2.35.5)
|
|
308
317
|
activesupport (>= 4.2.0)
|
|
309
318
|
lint_roller (~> 1.1)
|
|
310
319
|
rack (>= 1.1)
|
|
311
320
|
rubocop (>= 1.75.0, < 2.0)
|
|
312
|
-
rubocop-ast (>= 1.
|
|
321
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
313
322
|
rubocop-rake (0.7.1)
|
|
314
323
|
lint_roller (~> 1.1)
|
|
315
324
|
rubocop (>= 1.72.1)
|
|
316
|
-
rubocop-rspec (3.
|
|
325
|
+
rubocop-rspec (3.10.2)
|
|
317
326
|
lint_roller (~> 1.1)
|
|
318
|
-
|
|
319
|
-
|
|
327
|
+
regexp_parser (>= 2.0)
|
|
328
|
+
rubocop (~> 1.86, >= 1.86.2)
|
|
329
|
+
rubocop-rspec_rails (2.32.0)
|
|
320
330
|
lint_roller (~> 1.1)
|
|
321
331
|
rubocop (~> 1.72, >= 1.72.1)
|
|
322
332
|
rubocop-rspec (~> 3.5)
|
|
323
|
-
ruby-prof (
|
|
333
|
+
ruby-prof (2.0.5)
|
|
334
|
+
base64
|
|
335
|
+
ostruct
|
|
324
336
|
ruby-progressbar (1.13.0)
|
|
325
|
-
ruby2_keywords (0.0.5)
|
|
326
337
|
securerandom (0.4.1)
|
|
327
|
-
sinatra (4.
|
|
338
|
+
sinatra (4.2.1)
|
|
328
339
|
logger (>= 1.6.0)
|
|
329
340
|
mustermann (~> 3.0)
|
|
330
341
|
rack (>= 3.0.0, < 4)
|
|
331
|
-
rack-protection (= 4.
|
|
342
|
+
rack-protection (= 4.2.1)
|
|
332
343
|
rack-session (>= 2.0.0, < 3)
|
|
333
344
|
tilt (~> 2.0)
|
|
334
|
-
stringio (3.
|
|
335
|
-
strscan (3.1.
|
|
336
|
-
syntax_tree (6.
|
|
345
|
+
stringio (3.2.0)
|
|
346
|
+
strscan (3.1.8)
|
|
347
|
+
syntax_tree (6.3.0)
|
|
337
348
|
prettier_print (>= 1.2.0)
|
|
338
349
|
syntax_tree-haml (4.0.3)
|
|
339
350
|
haml (>= 5.2)
|
|
@@ -342,36 +353,39 @@ GEM
|
|
|
342
353
|
syntax_tree-xml (0.1.0)
|
|
343
354
|
prettier_print
|
|
344
355
|
syntax_tree (>= 2.0.1)
|
|
345
|
-
temple (0.10.
|
|
356
|
+
temple (0.10.4)
|
|
346
357
|
terminal-table (4.0.0)
|
|
347
358
|
unicode-display_width (>= 1.1.1, < 4)
|
|
348
|
-
thor (1.
|
|
349
|
-
tilt (2.
|
|
350
|
-
timeout (0.
|
|
359
|
+
thor (1.5.0)
|
|
360
|
+
tilt (2.7.0)
|
|
361
|
+
timeout (0.6.1)
|
|
362
|
+
track_open_instances (0.1.15)
|
|
363
|
+
tsort (0.2.0)
|
|
351
364
|
tzinfo (2.0.6)
|
|
352
365
|
concurrent-ruby (~> 1.0)
|
|
353
|
-
unicode-display_width (3.
|
|
354
|
-
unicode-emoji (~> 4.
|
|
355
|
-
unicode-emoji (4.0
|
|
356
|
-
uri (1.
|
|
366
|
+
unicode-display_width (3.2.0)
|
|
367
|
+
unicode-emoji (~> 4.1)
|
|
368
|
+
unicode-emoji (4.2.0)
|
|
369
|
+
uri (1.1.1)
|
|
357
370
|
useragent (0.16.11)
|
|
358
371
|
w_syntax_tree-erb (0.12.0)
|
|
359
372
|
prettier_print (~> 1.2, >= 1.2.0)
|
|
360
373
|
syntax_tree (~> 6.1, >= 6.1.1)
|
|
361
|
-
webmock (3.
|
|
374
|
+
webmock (3.26.2)
|
|
362
375
|
addressable (>= 2.8.0)
|
|
363
376
|
crack (>= 0.3.2)
|
|
364
377
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
365
|
-
websocket-driver (0.
|
|
378
|
+
websocket-driver (0.8.2)
|
|
366
379
|
base64
|
|
367
380
|
websocket-extensions (>= 0.1.0)
|
|
368
381
|
websocket-extensions (0.1.5)
|
|
369
382
|
yaml (0.4.0)
|
|
370
|
-
zeitwerk (2.
|
|
383
|
+
zeitwerk (2.8.2)
|
|
371
384
|
|
|
372
385
|
PLATFORMS
|
|
373
386
|
arm64-darwin-23
|
|
374
387
|
arm64-darwin-24
|
|
388
|
+
arm64-darwin-25
|
|
375
389
|
x86_64-linux
|
|
376
390
|
|
|
377
391
|
DEPENDENCIES
|
|
@@ -392,7 +406,7 @@ DEPENDENCIES
|
|
|
392
406
|
webmock
|
|
393
407
|
|
|
394
408
|
RUBY VERSION
|
|
395
|
-
|
|
409
|
+
ruby 4.0.5
|
|
396
410
|
|
|
397
411
|
BUNDLED WITH
|
|
398
|
-
|
|
412
|
+
4.0.15
|