miau 1.1.1 → 1.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +1 -1
  3. data/.gitignore +7 -4
  4. data/Gemfile +5 -3
  5. data/Gemfile.lock +181 -9
  6. data/README.md +7 -6
  7. data/Rakefile +4 -6
  8. data/gemfiles/rails_6.1.gemfile +3 -2
  9. data/gemfiles/rails_7.0.gemfile +3 -2
  10. data/gemfiles/rails_7.1.gemfile +3 -2
  11. data/lib/miau/application_policy.rb +1 -1
  12. data/lib/miau/run.rb +16 -15
  13. data/lib/miau/storage.rb +2 -2
  14. data/lib/miau/version.rb +2 -1
  15. data/lib/miau.rb +27 -19
  16. data/miau.gemspec +6 -8
  17. data/test/authorization_test.rb +28 -0
  18. data/test/benchmark_test.rb +34 -0
  19. data/test/controller_test.rb +58 -0
  20. data/test/controllers/orders_controller_test.rb +47 -0
  21. data/test/internal/app/controllers/application_controller.rb +7 -0
  22. data/test/internal/app/controllers/orders_controller.rb +61 -0
  23. data/test/internal/app/controllers/posts_controller.rb +10 -0
  24. data/test/internal/app/models/application_record.rb +3 -0
  25. data/test/internal/app/models/order.rb +2 -0
  26. data/test/internal/app/models/post.rb +2 -0
  27. data/test/internal/app/policies/orders_policy.rb +16 -0
  28. data/test/internal/app/policies/posts_policy.rb +18 -0
  29. data/test/internal/app/views/orders/new.html.erb +5 -0
  30. data/test/internal/config/database.yml +3 -0
  31. data/test/internal/config/routes.rb +3 -0
  32. data/test/internal/db/migrate/20141016161801_create_orders.rb +10 -0
  33. data/test/internal/db/schema.rb +8 -0
  34. data/test/miau_test.rb +46 -0
  35. data/test/run_test.rb +69 -0
  36. data/test/storage_test.rb +51 -0
  37. data/test/test_helper.rb +17 -0
  38. metadata +42 -10
  39. data/gemfiles/rails_6.1.gemfile.lock +0 -223
  40. data/gemfiles/rails_7.0.gemfile.lock +0 -255
  41. data/gemfiles/rails_7.1.gemfile.lock +0 -253
@@ -1,223 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- miau (1.0.3)
5
- activesupport
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (6.1.7.6)
11
- actionpack (= 6.1.7.6)
12
- activesupport (= 6.1.7.6)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailbox (6.1.7.6)
16
- actionpack (= 6.1.7.6)
17
- activejob (= 6.1.7.6)
18
- activerecord (= 6.1.7.6)
19
- activestorage (= 6.1.7.6)
20
- activesupport (= 6.1.7.6)
21
- mail (>= 2.7.1)
22
- actionmailer (6.1.7.6)
23
- actionpack (= 6.1.7.6)
24
- actionview (= 6.1.7.6)
25
- activejob (= 6.1.7.6)
26
- activesupport (= 6.1.7.6)
27
- mail (~> 2.5, >= 2.5.4)
28
- rails-dom-testing (~> 2.0)
29
- actionpack (6.1.7.6)
30
- actionview (= 6.1.7.6)
31
- activesupport (= 6.1.7.6)
32
- rack (~> 2.0, >= 2.0.9)
33
- rack-test (>= 0.6.3)
34
- rails-dom-testing (~> 2.0)
35
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
- actiontext (6.1.7.6)
37
- actionpack (= 6.1.7.6)
38
- activerecord (= 6.1.7.6)
39
- activestorage (= 6.1.7.6)
40
- activesupport (= 6.1.7.6)
41
- nokogiri (>= 1.8.5)
42
- actionview (6.1.7.6)
43
- activesupport (= 6.1.7.6)
44
- builder (~> 3.1)
45
- erubi (~> 1.4)
46
- rails-dom-testing (~> 2.0)
47
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
- activejob (6.1.7.6)
49
- activesupport (= 6.1.7.6)
50
- globalid (>= 0.3.6)
51
- activemodel (6.1.7.6)
52
- activesupport (= 6.1.7.6)
53
- activerecord (6.1.7.6)
54
- activemodel (= 6.1.7.6)
55
- activesupport (= 6.1.7.6)
56
- activestorage (6.1.7.6)
57
- actionpack (= 6.1.7.6)
58
- activejob (= 6.1.7.6)
59
- activerecord (= 6.1.7.6)
60
- activesupport (= 6.1.7.6)
61
- marcel (~> 1.0)
62
- mini_mime (>= 1.1.0)
63
- activesupport (6.1.7.6)
64
- concurrent-ruby (~> 1.0, >= 1.0.2)
65
- i18n (>= 1.6, < 2)
66
- minitest (>= 5.1)
67
- tzinfo (~> 2.0)
68
- zeitwerk (~> 2.3)
69
- appraisal (2.5.0)
70
- bundler
71
- rake
72
- thor (>= 0.14.0)
73
- ast (2.4.2)
74
- benchmark-ips (2.13.0)
75
- builder (3.2.4)
76
- concurrent-ruby (1.2.2)
77
- crass (1.0.6)
78
- date (3.3.4)
79
- docile (1.4.0)
80
- dryer-config (6.1.4)
81
- erubi (1.12.0)
82
- globalid (1.2.1)
83
- activesupport (>= 6.1)
84
- i18n (1.14.1)
85
- concurrent-ruby (~> 1.0)
86
- json (2.7.1)
87
- language_server-protocol (3.17.0.3)
88
- lint_roller (1.1.0)
89
- loofah (2.22.0)
90
- crass (~> 1.0.2)
91
- nokogiri (>= 1.12.0)
92
- mail (2.8.1)
93
- mini_mime (>= 0.1.1)
94
- net-imap
95
- net-pop
96
- net-smtp
97
- marcel (1.0.2)
98
- method_source (1.0.0)
99
- mini_mime (1.1.5)
100
- minitest (5.20.0)
101
- net-imap (0.4.9.1)
102
- date
103
- net-protocol
104
- net-pop (0.1.2)
105
- net-protocol
106
- net-protocol (0.2.2)
107
- timeout
108
- net-smtp (0.4.0.1)
109
- net-protocol
110
- nio4r (2.7.0)
111
- nokogiri (1.16.0-x86_64-linux)
112
- racc (~> 1.4)
113
- observr (1.0.5)
114
- parallel (1.24.0)
115
- parser (3.3.0.0)
116
- ast (~> 2.4.1)
117
- racc
118
- racc (1.7.3)
119
- rack (2.2.8)
120
- rack-test (2.1.0)
121
- rack (>= 1.3)
122
- rails (6.1.7.6)
123
- actioncable (= 6.1.7.6)
124
- actionmailbox (= 6.1.7.6)
125
- actionmailer (= 6.1.7.6)
126
- actionpack (= 6.1.7.6)
127
- actiontext (= 6.1.7.6)
128
- actionview (= 6.1.7.6)
129
- activejob (= 6.1.7.6)
130
- activemodel (= 6.1.7.6)
131
- activerecord (= 6.1.7.6)
132
- activestorage (= 6.1.7.6)
133
- activesupport (= 6.1.7.6)
134
- bundler (>= 1.15.0)
135
- railties (= 6.1.7.6)
136
- sprockets-rails (>= 2.0.0)
137
- rails-dom-testing (2.2.0)
138
- activesupport (>= 5.0.0)
139
- minitest
140
- nokogiri (>= 1.6)
141
- rails-html-sanitizer (1.6.0)
142
- loofah (~> 2.21)
143
- nokogiri (~> 1.14)
144
- railties (6.1.7.6)
145
- actionpack (= 6.1.7.6)
146
- activesupport (= 6.1.7.6)
147
- method_source
148
- rake (>= 12.2)
149
- thor (~> 1.0)
150
- rainbow (3.1.1)
151
- rake (13.1.0)
152
- regexp_parser (2.8.3)
153
- rexml (3.2.6)
154
- ricecream (0.2.1)
155
- rubocop (1.59.0)
156
- json (~> 2.3)
157
- language_server-protocol (>= 3.17.0)
158
- parallel (~> 1.10)
159
- parser (>= 3.2.2.4)
160
- rainbow (>= 2.2.2, < 4.0)
161
- regexp_parser (>= 1.8, < 3.0)
162
- rexml (>= 3.2.5, < 4.0)
163
- rubocop-ast (>= 1.30.0, < 2.0)
164
- ruby-progressbar (~> 1.7)
165
- unicode-display_width (>= 2.4.0, < 3.0)
166
- rubocop-ast (1.30.0)
167
- parser (>= 3.2.1.0)
168
- rubocop-performance (1.20.1)
169
- rubocop (>= 1.48.1, < 2.0)
170
- rubocop-ast (>= 1.30.0, < 2.0)
171
- ruby-progressbar (1.13.0)
172
- simplecov (0.22.0)
173
- docile (~> 1.1)
174
- simplecov-html (~> 0.11)
175
- simplecov_json_formatter (~> 0.1)
176
- simplecov-html (0.12.3)
177
- simplecov_json_formatter (0.1.4)
178
- sprockets (4.2.1)
179
- concurrent-ruby (~> 1.0)
180
- rack (>= 2.2.4, < 4)
181
- sprockets-rails (3.4.2)
182
- actionpack (>= 5.2)
183
- activesupport (>= 5.2)
184
- sprockets (>= 3.0.0)
185
- standard (1.33.0)
186
- language_server-protocol (~> 3.17.0.2)
187
- lint_roller (~> 1.0)
188
- rubocop (~> 1.59.0)
189
- standard-custom (~> 1.0.0)
190
- standard-performance (~> 1.3)
191
- standard-custom (1.0.2)
192
- lint_roller (~> 1.0)
193
- rubocop (~> 1.50)
194
- standard-performance (1.3.0)
195
- lint_roller (~> 1.1)
196
- rubocop-performance (~> 1.20.1)
197
- thor (1.3.0)
198
- timeout (0.4.1)
199
- tzinfo (2.0.6)
200
- concurrent-ruby (~> 1.0)
201
- unicode-display_width (2.5.0)
202
- websocket-driver (0.7.6)
203
- websocket-extensions (>= 0.1.0)
204
- websocket-extensions (0.1.5)
205
- zeitwerk (2.6.12)
206
-
207
- PLATFORMS
208
- x86_64-linux
209
-
210
- DEPENDENCIES
211
- appraisal
212
- benchmark-ips
213
- dryer-config (~> 6.0)
214
- miau!
215
- minitest
216
- observr
217
- rails (~> 6.1)
218
- ricecream
219
- simplecov
220
- standard
221
-
222
- BUNDLED WITH
223
- 2.5.3
@@ -1,255 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- miau (1.0.3)
5
- activesupport
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (7.1.2)
11
- actionpack (= 7.1.2)
12
- activesupport (= 7.1.2)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- zeitwerk (~> 2.6)
16
- actionmailbox (7.1.2)
17
- actionpack (= 7.1.2)
18
- activejob (= 7.1.2)
19
- activerecord (= 7.1.2)
20
- activestorage (= 7.1.2)
21
- activesupport (= 7.1.2)
22
- mail (>= 2.7.1)
23
- net-imap
24
- net-pop
25
- net-smtp
26
- actionmailer (7.1.2)
27
- actionpack (= 7.1.2)
28
- actionview (= 7.1.2)
29
- activejob (= 7.1.2)
30
- activesupport (= 7.1.2)
31
- mail (~> 2.5, >= 2.5.4)
32
- net-imap
33
- net-pop
34
- net-smtp
35
- rails-dom-testing (~> 2.2)
36
- actionpack (7.1.2)
37
- actionview (= 7.1.2)
38
- activesupport (= 7.1.2)
39
- nokogiri (>= 1.8.5)
40
- racc
41
- rack (>= 2.2.4)
42
- rack-session (>= 1.0.1)
43
- rack-test (>= 0.6.3)
44
- rails-dom-testing (~> 2.2)
45
- rails-html-sanitizer (~> 1.6)
46
- actiontext (7.1.2)
47
- actionpack (= 7.1.2)
48
- activerecord (= 7.1.2)
49
- activestorage (= 7.1.2)
50
- activesupport (= 7.1.2)
51
- globalid (>= 0.6.0)
52
- nokogiri (>= 1.8.5)
53
- actionview (7.1.2)
54
- activesupport (= 7.1.2)
55
- builder (~> 3.1)
56
- erubi (~> 1.11)
57
- rails-dom-testing (~> 2.2)
58
- rails-html-sanitizer (~> 1.6)
59
- activejob (7.1.2)
60
- activesupport (= 7.1.2)
61
- globalid (>= 0.3.6)
62
- activemodel (7.1.2)
63
- activesupport (= 7.1.2)
64
- activerecord (7.1.2)
65
- activemodel (= 7.1.2)
66
- activesupport (= 7.1.2)
67
- timeout (>= 0.4.0)
68
- activestorage (7.1.2)
69
- actionpack (= 7.1.2)
70
- activejob (= 7.1.2)
71
- activerecord (= 7.1.2)
72
- activesupport (= 7.1.2)
73
- marcel (~> 1.0)
74
- activesupport (7.1.2)
75
- base64
76
- bigdecimal
77
- concurrent-ruby (~> 1.0, >= 1.0.2)
78
- connection_pool (>= 2.2.5)
79
- drb
80
- i18n (>= 1.6, < 2)
81
- minitest (>= 5.1)
82
- mutex_m
83
- tzinfo (~> 2.0)
84
- appraisal (2.5.0)
85
- bundler
86
- rake
87
- thor (>= 0.14.0)
88
- ast (2.4.2)
89
- base64 (0.2.0)
90
- benchmark-ips (2.13.0)
91
- bigdecimal (3.1.5)
92
- builder (3.2.4)
93
- concurrent-ruby (1.2.2)
94
- connection_pool (2.4.1)
95
- crass (1.0.6)
96
- date (3.3.4)
97
- docile (1.4.0)
98
- drb (2.2.0)
99
- ruby2_keywords
100
- dryer-config (7.1.0)
101
- erubi (1.12.0)
102
- globalid (1.2.1)
103
- activesupport (>= 6.1)
104
- i18n (1.14.1)
105
- concurrent-ruby (~> 1.0)
106
- io-console (0.7.1)
107
- irb (1.11.0)
108
- rdoc
109
- reline (>= 0.3.8)
110
- json (2.7.1)
111
- language_server-protocol (3.17.0.3)
112
- lint_roller (1.1.0)
113
- loofah (2.22.0)
114
- crass (~> 1.0.2)
115
- nokogiri (>= 1.12.0)
116
- mail (2.8.1)
117
- mini_mime (>= 0.1.1)
118
- net-imap
119
- net-pop
120
- net-smtp
121
- marcel (1.0.2)
122
- mini_mime (1.1.5)
123
- minitest (5.20.0)
124
- mutex_m (0.2.0)
125
- net-imap (0.4.9.1)
126
- date
127
- net-protocol
128
- net-pop (0.1.2)
129
- net-protocol
130
- net-protocol (0.2.2)
131
- timeout
132
- net-smtp (0.4.0.1)
133
- net-protocol
134
- nio4r (2.7.0)
135
- nokogiri (1.16.0-x86_64-linux)
136
- racc (~> 1.4)
137
- observr (1.0.5)
138
- parallel (1.24.0)
139
- parser (3.3.0.0)
140
- ast (~> 2.4.1)
141
- racc
142
- psych (5.1.2)
143
- stringio
144
- racc (1.7.3)
145
- rack (3.0.8)
146
- rack-session (2.0.0)
147
- rack (>= 3.0.0)
148
- rack-test (2.1.0)
149
- rack (>= 1.3)
150
- rackup (2.1.0)
151
- rack (>= 3)
152
- webrick (~> 1.8)
153
- rails (7.1.2)
154
- actioncable (= 7.1.2)
155
- actionmailbox (= 7.1.2)
156
- actionmailer (= 7.1.2)
157
- actionpack (= 7.1.2)
158
- actiontext (= 7.1.2)
159
- actionview (= 7.1.2)
160
- activejob (= 7.1.2)
161
- activemodel (= 7.1.2)
162
- activerecord (= 7.1.2)
163
- activestorage (= 7.1.2)
164
- activesupport (= 7.1.2)
165
- bundler (>= 1.15.0)
166
- railties (= 7.1.2)
167
- rails-dom-testing (2.2.0)
168
- activesupport (>= 5.0.0)
169
- minitest
170
- nokogiri (>= 1.6)
171
- rails-html-sanitizer (1.6.0)
172
- loofah (~> 2.21)
173
- nokogiri (~> 1.14)
174
- railties (7.1.2)
175
- actionpack (= 7.1.2)
176
- activesupport (= 7.1.2)
177
- irb
178
- rackup (>= 1.0.0)
179
- rake (>= 12.2)
180
- thor (~> 1.0, >= 1.2.2)
181
- zeitwerk (~> 2.6)
182
- rainbow (3.1.1)
183
- rake (13.1.0)
184
- rdoc (6.6.2)
185
- psych (>= 4.0.0)
186
- regexp_parser (2.8.3)
187
- reline (0.4.2)
188
- io-console (~> 0.5)
189
- rexml (3.2.6)
190
- ricecream (0.2.1)
191
- rubocop (1.59.0)
192
- json (~> 2.3)
193
- language_server-protocol (>= 3.17.0)
194
- parallel (~> 1.10)
195
- parser (>= 3.2.2.4)
196
- rainbow (>= 2.2.2, < 4.0)
197
- regexp_parser (>= 1.8, < 3.0)
198
- rexml (>= 3.2.5, < 4.0)
199
- rubocop-ast (>= 1.30.0, < 2.0)
200
- ruby-progressbar (~> 1.7)
201
- unicode-display_width (>= 2.4.0, < 3.0)
202
- rubocop-ast (1.30.0)
203
- parser (>= 3.2.1.0)
204
- rubocop-performance (1.20.1)
205
- rubocop (>= 1.48.1, < 2.0)
206
- rubocop-ast (>= 1.30.0, < 2.0)
207
- ruby-progressbar (1.13.0)
208
- ruby2_keywords (0.0.5)
209
- simplecov (0.22.0)
210
- docile (~> 1.1)
211
- simplecov-html (~> 0.11)
212
- simplecov_json_formatter (~> 0.1)
213
- simplecov-html (0.12.3)
214
- simplecov_json_formatter (0.1.4)
215
- standard (1.33.0)
216
- language_server-protocol (~> 3.17.0.2)
217
- lint_roller (~> 1.0)
218
- rubocop (~> 1.59.0)
219
- standard-custom (~> 1.0.0)
220
- standard-performance (~> 1.3)
221
- standard-custom (1.0.2)
222
- lint_roller (~> 1.0)
223
- rubocop (~> 1.50)
224
- standard-performance (1.3.0)
225
- lint_roller (~> 1.1)
226
- rubocop-performance (~> 1.20.1)
227
- stringio (3.1.0)
228
- thor (1.3.0)
229
- timeout (0.4.1)
230
- tzinfo (2.0.6)
231
- concurrent-ruby (~> 1.0)
232
- unicode-display_width (2.5.0)
233
- webrick (1.8.1)
234
- websocket-driver (0.7.6)
235
- websocket-extensions (>= 0.1.0)
236
- websocket-extensions (0.1.5)
237
- zeitwerk (2.6.12)
238
-
239
- PLATFORMS
240
- x86_64-linux
241
-
242
- DEPENDENCIES
243
- appraisal
244
- benchmark-ips
245
- dryer-config (~> 7.0)
246
- miau!
247
- minitest
248
- observr
249
- rails (~> 7.0)
250
- ricecream
251
- simplecov
252
- standard
253
-
254
- BUNDLED WITH
255
- 2.5.3
@@ -1,253 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- miau (1.0.3)
5
- activesupport
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (7.1.2)
11
- actionpack (= 7.1.2)
12
- activesupport (= 7.1.2)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- zeitwerk (~> 2.6)
16
- actionmailbox (7.1.2)
17
- actionpack (= 7.1.2)
18
- activejob (= 7.1.2)
19
- activerecord (= 7.1.2)
20
- activestorage (= 7.1.2)
21
- activesupport (= 7.1.2)
22
- mail (>= 2.7.1)
23
- net-imap
24
- net-pop
25
- net-smtp
26
- actionmailer (7.1.2)
27
- actionpack (= 7.1.2)
28
- actionview (= 7.1.2)
29
- activejob (= 7.1.2)
30
- activesupport (= 7.1.2)
31
- mail (~> 2.5, >= 2.5.4)
32
- net-imap
33
- net-pop
34
- net-smtp
35
- rails-dom-testing (~> 2.2)
36
- actionpack (7.1.2)
37
- actionview (= 7.1.2)
38
- activesupport (= 7.1.2)
39
- nokogiri (>= 1.8.5)
40
- racc
41
- rack (>= 2.2.4)
42
- rack-session (>= 1.0.1)
43
- rack-test (>= 0.6.3)
44
- rails-dom-testing (~> 2.2)
45
- rails-html-sanitizer (~> 1.6)
46
- actiontext (7.1.2)
47
- actionpack (= 7.1.2)
48
- activerecord (= 7.1.2)
49
- activestorage (= 7.1.2)
50
- activesupport (= 7.1.2)
51
- globalid (>= 0.6.0)
52
- nokogiri (>= 1.8.5)
53
- actionview (7.1.2)
54
- activesupport (= 7.1.2)
55
- builder (~> 3.1)
56
- erubi (~> 1.11)
57
- rails-dom-testing (~> 2.2)
58
- rails-html-sanitizer (~> 1.6)
59
- activejob (7.1.2)
60
- activesupport (= 7.1.2)
61
- globalid (>= 0.3.6)
62
- activemodel (7.1.2)
63
- activesupport (= 7.1.2)
64
- activerecord (7.1.2)
65
- activemodel (= 7.1.2)
66
- activesupport (= 7.1.2)
67
- timeout (>= 0.4.0)
68
- activestorage (7.1.2)
69
- actionpack (= 7.1.2)
70
- activejob (= 7.1.2)
71
- activerecord (= 7.1.2)
72
- activesupport (= 7.1.2)
73
- marcel (~> 1.0)
74
- activesupport (7.1.2)
75
- base64
76
- bigdecimal
77
- concurrent-ruby (~> 1.0, >= 1.0.2)
78
- connection_pool (>= 2.2.5)
79
- drb
80
- i18n (>= 1.6, < 2)
81
- minitest (>= 5.1)
82
- mutex_m
83
- tzinfo (~> 2.0)
84
- appraisal (2.5.0)
85
- bundler
86
- rake
87
- thor (>= 0.14.0)
88
- ast (2.4.2)
89
- base64 (0.2.0)
90
- benchmark-ips (2.13.0)
91
- bigdecimal (3.1.5)
92
- builder (3.2.4)
93
- concurrent-ruby (1.2.2)
94
- connection_pool (2.4.1)
95
- crass (1.0.6)
96
- date (3.3.4)
97
- docile (1.4.0)
98
- drb (2.2.0)
99
- ruby2_keywords
100
- erubi (1.12.0)
101
- globalid (1.2.1)
102
- activesupport (>= 6.1)
103
- i18n (1.14.1)
104
- concurrent-ruby (~> 1.0)
105
- io-console (0.7.1)
106
- irb (1.11.0)
107
- rdoc
108
- reline (>= 0.3.8)
109
- json (2.7.1)
110
- language_server-protocol (3.17.0.3)
111
- lint_roller (1.1.0)
112
- loofah (2.22.0)
113
- crass (~> 1.0.2)
114
- nokogiri (>= 1.12.0)
115
- mail (2.8.1)
116
- mini_mime (>= 0.1.1)
117
- net-imap
118
- net-pop
119
- net-smtp
120
- marcel (1.0.2)
121
- mini_mime (1.1.5)
122
- minitest (5.20.0)
123
- mutex_m (0.2.0)
124
- net-imap (0.4.9.1)
125
- date
126
- net-protocol
127
- net-pop (0.1.2)
128
- net-protocol
129
- net-protocol (0.2.2)
130
- timeout
131
- net-smtp (0.4.0.1)
132
- net-protocol
133
- nio4r (2.7.0)
134
- nokogiri (1.16.0-x86_64-linux)
135
- racc (~> 1.4)
136
- observr (1.0.5)
137
- parallel (1.24.0)
138
- parser (3.3.0.0)
139
- ast (~> 2.4.1)
140
- racc
141
- psych (5.1.2)
142
- stringio
143
- racc (1.7.3)
144
- rack (3.0.8)
145
- rack-session (2.0.0)
146
- rack (>= 3.0.0)
147
- rack-test (2.1.0)
148
- rack (>= 1.3)
149
- rackup (2.1.0)
150
- rack (>= 3)
151
- webrick (~> 1.8)
152
- rails (7.1.2)
153
- actioncable (= 7.1.2)
154
- actionmailbox (= 7.1.2)
155
- actionmailer (= 7.1.2)
156
- actionpack (= 7.1.2)
157
- actiontext (= 7.1.2)
158
- actionview (= 7.1.2)
159
- activejob (= 7.1.2)
160
- activemodel (= 7.1.2)
161
- activerecord (= 7.1.2)
162
- activestorage (= 7.1.2)
163
- activesupport (= 7.1.2)
164
- bundler (>= 1.15.0)
165
- railties (= 7.1.2)
166
- rails-dom-testing (2.2.0)
167
- activesupport (>= 5.0.0)
168
- minitest
169
- nokogiri (>= 1.6)
170
- rails-html-sanitizer (1.6.0)
171
- loofah (~> 2.21)
172
- nokogiri (~> 1.14)
173
- railties (7.1.2)
174
- actionpack (= 7.1.2)
175
- activesupport (= 7.1.2)
176
- irb
177
- rackup (>= 1.0.0)
178
- rake (>= 12.2)
179
- thor (~> 1.0, >= 1.2.2)
180
- zeitwerk (~> 2.6)
181
- rainbow (3.1.1)
182
- rake (13.1.0)
183
- rdoc (6.6.2)
184
- psych (>= 4.0.0)
185
- regexp_parser (2.8.3)
186
- reline (0.4.2)
187
- io-console (~> 0.5)
188
- rexml (3.2.6)
189
- ricecream (0.2.1)
190
- rubocop (1.59.0)
191
- json (~> 2.3)
192
- language_server-protocol (>= 3.17.0)
193
- parallel (~> 1.10)
194
- parser (>= 3.2.2.4)
195
- rainbow (>= 2.2.2, < 4.0)
196
- regexp_parser (>= 1.8, < 3.0)
197
- rexml (>= 3.2.5, < 4.0)
198
- rubocop-ast (>= 1.30.0, < 2.0)
199
- ruby-progressbar (~> 1.7)
200
- unicode-display_width (>= 2.4.0, < 3.0)
201
- rubocop-ast (1.30.0)
202
- parser (>= 3.2.1.0)
203
- rubocop-performance (1.20.1)
204
- rubocop (>= 1.48.1, < 2.0)
205
- rubocop-ast (>= 1.30.0, < 2.0)
206
- ruby-progressbar (1.13.0)
207
- ruby2_keywords (0.0.5)
208
- simplecov (0.22.0)
209
- docile (~> 1.1)
210
- simplecov-html (~> 0.11)
211
- simplecov_json_formatter (~> 0.1)
212
- simplecov-html (0.12.3)
213
- simplecov_json_formatter (0.1.4)
214
- standard (1.33.0)
215
- language_server-protocol (~> 3.17.0.2)
216
- lint_roller (~> 1.0)
217
- rubocop (~> 1.59.0)
218
- standard-custom (~> 1.0.0)
219
- standard-performance (~> 1.3)
220
- standard-custom (1.0.2)
221
- lint_roller (~> 1.0)
222
- rubocop (~> 1.50)
223
- standard-performance (1.3.0)
224
- lint_roller (~> 1.1)
225
- rubocop-performance (~> 1.20.1)
226
- stringio (3.1.0)
227
- thor (1.3.0)
228
- timeout (0.4.1)
229
- tzinfo (2.0.6)
230
- concurrent-ruby (~> 1.0)
231
- unicode-display_width (2.5.0)
232
- webrick (1.8.1)
233
- websocket-driver (0.7.6)
234
- websocket-extensions (>= 0.1.0)
235
- websocket-extensions (0.1.5)
236
- zeitwerk (2.6.12)
237
-
238
- PLATFORMS
239
- x86_64-linux
240
-
241
- DEPENDENCIES
242
- appraisal
243
- benchmark-ips
244
- miau!
245
- minitest
246
- observr
247
- rails (~> 7.1)
248
- ricecream
249
- simplecov
250
- standard
251
-
252
- BUNDLED WITH
253
- 2.5.3