rails_edge_test 1.2.3 → 2.1.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/.github/workflows/ci.yml +28 -0
- data/.gitignore +2 -0
- data/CHANGELOG.md +9 -1
- data/lib/rails_edge_test/dsl/edge.rb +23 -1
- data/lib/rails_edge_test/version.rb +1 -1
- data/nix/Gemfile +4 -4
- data/nix/Gemfile.lock +136 -102
- data/nix/gemset.nix +182 -128
- data/nix/sources.json +5 -17
- data/nix/sources.nix +106 -46
- data/nix/update-gemset.sh +1 -1
- data/rails_edge_test.gemspec +2 -2
- data/shell.nix +10 -3
- metadata +8 -13
- data/.travis.yml +0 -11
- data/gemfiles/rails_5.2.gemfile +0 -7
- data/gemfiles/rails_5.2.gemfile.lock +0 -149
- data/gemfiles/rails_6.0.gemfile +0 -7
- data/gemfiles/rails_6.0.gemfile.lock +0 -165
- data/gemfiles/rspec_6.0.gemfile.lock +0 -165
data/nix/gemset.nix
CHANGED
@@ -1,25 +1,36 @@
|
|
1
1
|
{
|
2
2
|
actioncable = {
|
3
|
-
dependencies = ["actionpack" "nio4r" "websocket-driver"];
|
3
|
+
dependencies = ["actionpack" "activesupport" "nio4r" "websocket-driver"];
|
4
4
|
groups = ["default" "development"];
|
5
5
|
platforms = [];
|
6
6
|
source = {
|
7
7
|
remotes = ["https://rubygems.org"];
|
8
|
-
sha256 = "
|
8
|
+
sha256 = "001cwsb6496wp8g0nkyjqxgmii63aljydq132yb2ksdp8ml5zlgj";
|
9
9
|
type = "gem";
|
10
10
|
};
|
11
|
-
version = "
|
11
|
+
version = "7.0.5";
|
12
|
+
};
|
13
|
+
actionmailbox = {
|
14
|
+
dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail" "net-imap" "net-pop" "net-smtp"];
|
15
|
+
groups = ["default" "development"];
|
16
|
+
platforms = [];
|
17
|
+
source = {
|
18
|
+
remotes = ["https://rubygems.org"];
|
19
|
+
sha256 = "0d990xy3jin8qa4l989r43kl5ykmi2kdlxqpnla10n5c7xp7xmci";
|
20
|
+
type = "gem";
|
21
|
+
};
|
22
|
+
version = "7.0.5";
|
12
23
|
};
|
13
24
|
actionmailer = {
|
14
|
-
dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
|
25
|
+
dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "net-imap" "net-pop" "net-smtp" "rails-dom-testing"];
|
15
26
|
groups = ["default" "development"];
|
16
27
|
platforms = [];
|
17
28
|
source = {
|
18
29
|
remotes = ["https://rubygems.org"];
|
19
|
-
sha256 = "
|
30
|
+
sha256 = "033981lhbq0vl8ppfpamqpqj3sq15x759899hvwli2imp3yw49r5";
|
20
31
|
type = "gem";
|
21
32
|
};
|
22
|
-
version = "
|
33
|
+
version = "7.0.5";
|
23
34
|
};
|
24
35
|
actionpack = {
|
25
36
|
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
|
@@ -27,10 +38,21 @@
|
|
27
38
|
platforms = [];
|
28
39
|
source = {
|
29
40
|
remotes = ["https://rubygems.org"];
|
30
|
-
sha256 = "
|
41
|
+
sha256 = "0w717izq6k7wl2j6zn4516kg2iwg3zgdzja6b6gpk6y5nccr04hw";
|
31
42
|
type = "gem";
|
32
43
|
};
|
33
|
-
version = "
|
44
|
+
version = "7.0.5";
|
45
|
+
};
|
46
|
+
actiontext = {
|
47
|
+
dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "globalid" "nokogiri"];
|
48
|
+
groups = ["default" "development"];
|
49
|
+
platforms = [];
|
50
|
+
source = {
|
51
|
+
remotes = ["https://rubygems.org"];
|
52
|
+
sha256 = "0bcpjhhbq6gl4h7hq2fianfz8vpdxf53gsj1ng04bkh5bxxrmrc1";
|
53
|
+
type = "gem";
|
54
|
+
};
|
55
|
+
version = "7.0.5";
|
34
56
|
};
|
35
57
|
actionview = {
|
36
58
|
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
|
@@ -38,10 +60,10 @@
|
|
38
60
|
platforms = [];
|
39
61
|
source = {
|
40
62
|
remotes = ["https://rubygems.org"];
|
41
|
-
sha256 = "
|
63
|
+
sha256 = "1z0xvdal339w7jvk7a5py0c1q5xh588vqrilgxizkvzm3hwf48a2";
|
42
64
|
type = "gem";
|
43
65
|
};
|
44
|
-
version = "
|
66
|
+
version = "7.0.5";
|
45
67
|
};
|
46
68
|
activejob = {
|
47
69
|
dependencies = ["activesupport" "globalid"];
|
@@ -49,10 +71,10 @@
|
|
49
71
|
platforms = [];
|
50
72
|
source = {
|
51
73
|
remotes = ["https://rubygems.org"];
|
52
|
-
sha256 = "
|
74
|
+
sha256 = "18gsxi7vlg8y8k2fbhq44zd0mivjpnn4nrlfj037c7wvq5h8367v";
|
53
75
|
type = "gem";
|
54
76
|
};
|
55
|
-
version = "
|
77
|
+
version = "7.0.5";
|
56
78
|
};
|
57
79
|
activemodel = {
|
58
80
|
dependencies = ["activesupport"];
|
@@ -60,32 +82,32 @@
|
|
60
82
|
platforms = [];
|
61
83
|
source = {
|
62
84
|
remotes = ["https://rubygems.org"];
|
63
|
-
sha256 = "
|
85
|
+
sha256 = "0cjbk1xl6jl2d6sczpxnr8da7zbmshmrghqhqdcwqqzl6chcy2si";
|
64
86
|
type = "gem";
|
65
87
|
};
|
66
|
-
version = "
|
88
|
+
version = "7.0.5";
|
67
89
|
};
|
68
90
|
activerecord = {
|
69
|
-
dependencies = ["activemodel" "activesupport"
|
91
|
+
dependencies = ["activemodel" "activesupport"];
|
70
92
|
groups = ["default" "development"];
|
71
93
|
platforms = [];
|
72
94
|
source = {
|
73
95
|
remotes = ["https://rubygems.org"];
|
74
|
-
sha256 = "
|
96
|
+
sha256 = "04x0bz3051linhmi52cfg31nsm4sgg27m7wp9p0cxrxdwc7q0bjl";
|
75
97
|
type = "gem";
|
76
98
|
};
|
77
|
-
version = "
|
99
|
+
version = "7.0.5";
|
78
100
|
};
|
79
101
|
activestorage = {
|
80
|
-
dependencies = ["actionpack" "activerecord" "marcel"];
|
102
|
+
dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime"];
|
81
103
|
groups = ["default" "development"];
|
82
104
|
platforms = [];
|
83
105
|
source = {
|
84
106
|
remotes = ["https://rubygems.org"];
|
85
|
-
sha256 = "
|
107
|
+
sha256 = "0mg236x3rkmdargkk9y6j9gqhkajzbk852gwnp1crp0difk7a4r8";
|
86
108
|
type = "gem";
|
87
109
|
};
|
88
|
-
version = "
|
110
|
+
version = "7.0.5";
|
89
111
|
};
|
90
112
|
activesupport = {
|
91
113
|
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
|
@@ -93,20 +115,10 @@
|
|
93
115
|
platforms = [];
|
94
116
|
source = {
|
95
117
|
remotes = ["https://rubygems.org"];
|
96
|
-
sha256 = "
|
118
|
+
sha256 = "1c7k5i6531z5il4q1jnbrv7x7zcl3bgnxp5fzl71rzigk6zn53ym";
|
97
119
|
type = "gem";
|
98
120
|
};
|
99
|
-
version = "
|
100
|
-
};
|
101
|
-
arel = {
|
102
|
-
groups = ["default" "development"];
|
103
|
-
platforms = [];
|
104
|
-
source = {
|
105
|
-
remotes = ["https://rubygems.org"];
|
106
|
-
sha256 = "1jk7wlmkr61f6g36w9s2sn46nmdg6wn2jfssrhbhirv5x9n95nk0";
|
107
|
-
type = "gem";
|
108
|
-
};
|
109
|
-
version = "9.0.0";
|
121
|
+
version = "7.0.5";
|
110
122
|
};
|
111
123
|
builder = {
|
112
124
|
groups = ["default" "development"];
|
@@ -123,10 +135,10 @@
|
|
123
135
|
platforms = [];
|
124
136
|
source = {
|
125
137
|
remotes = ["https://rubygems.org"];
|
126
|
-
sha256 = "
|
138
|
+
sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q";
|
127
139
|
type = "gem";
|
128
140
|
};
|
129
|
-
version = "1.
|
141
|
+
version = "1.2.2";
|
130
142
|
};
|
131
143
|
crass = {
|
132
144
|
groups = ["default" "development"];
|
@@ -138,25 +150,35 @@
|
|
138
150
|
};
|
139
151
|
version = "1.0.6";
|
140
152
|
};
|
153
|
+
date = {
|
154
|
+
groups = ["default" "development"];
|
155
|
+
platforms = [];
|
156
|
+
source = {
|
157
|
+
remotes = ["https://rubygems.org"];
|
158
|
+
sha256 = "03skfikihpx37rc27vr3hwrb057gxnmdzxhmzd4bf4jpkl0r55w1";
|
159
|
+
type = "gem";
|
160
|
+
};
|
161
|
+
version = "3.3.3";
|
162
|
+
};
|
141
163
|
diff-lcs = {
|
142
164
|
groups = ["default" "development"];
|
143
165
|
platforms = [];
|
144
166
|
source = {
|
145
167
|
remotes = ["https://rubygems.org"];
|
146
|
-
sha256 = "
|
168
|
+
sha256 = "0rwvjahnp7cpmracd8x732rjgnilqv2sx7d1gfrysslc3h039fa9";
|
147
169
|
type = "gem";
|
148
170
|
};
|
149
|
-
version = "1.
|
171
|
+
version = "1.5.0";
|
150
172
|
};
|
151
173
|
erubi = {
|
152
174
|
groups = ["default" "development"];
|
153
175
|
platforms = [];
|
154
176
|
source = {
|
155
177
|
remotes = ["https://rubygems.org"];
|
156
|
-
sha256 = "
|
178
|
+
sha256 = "08s75vs9cxlc4r1q2bjg4br8g9wc5lc5x5vl0vv4zq5ivxsdpgi7";
|
157
179
|
type = "gem";
|
158
180
|
};
|
159
|
-
version = "1.
|
181
|
+
version = "1.12.0";
|
160
182
|
};
|
161
183
|
globalid = {
|
162
184
|
dependencies = ["activesupport"];
|
@@ -164,10 +186,10 @@
|
|
164
186
|
platforms = [];
|
165
187
|
source = {
|
166
188
|
remotes = ["https://rubygems.org"];
|
167
|
-
sha256 = "
|
189
|
+
sha256 = "0kqm5ndzaybpnpxqiqkc41k4ksyxl41ln8qqr6kb130cdxsf2dxk";
|
168
190
|
type = "gem";
|
169
191
|
};
|
170
|
-
version = "
|
192
|
+
version = "1.1.0";
|
171
193
|
};
|
172
194
|
i18n = {
|
173
195
|
dependencies = ["concurrent-ruby"];
|
@@ -175,10 +197,10 @@
|
|
175
197
|
platforms = [];
|
176
198
|
source = {
|
177
199
|
remotes = ["https://rubygems.org"];
|
178
|
-
sha256 = "
|
200
|
+
sha256 = "1yk33slipi3i1kydzrrchbi7cgisaxym6pgwlzx7ir8vjk6wl90x";
|
179
201
|
type = "gem";
|
180
202
|
};
|
181
|
-
version = "1.
|
203
|
+
version = "1.13.0";
|
182
204
|
};
|
183
205
|
loofah = {
|
184
206
|
dependencies = ["crass" "nokogiri"];
|
@@ -186,32 +208,31 @@
|
|
186
208
|
platforms = [];
|
187
209
|
source = {
|
188
210
|
remotes = ["https://rubygems.org"];
|
189
|
-
sha256 = "
|
211
|
+
sha256 = "1p744kjpb5zk2ihklbykzii77alycjc04vpnm2ch2f3cp65imlj3";
|
190
212
|
type = "gem";
|
191
213
|
};
|
192
|
-
version = "2.
|
214
|
+
version = "2.21.3";
|
193
215
|
};
|
194
216
|
mail = {
|
195
|
-
dependencies = ["mini_mime"];
|
217
|
+
dependencies = ["mini_mime" "net-imap" "net-pop" "net-smtp"];
|
196
218
|
groups = ["default" "development"];
|
197
219
|
platforms = [];
|
198
220
|
source = {
|
199
221
|
remotes = ["https://rubygems.org"];
|
200
|
-
sha256 = "
|
222
|
+
sha256 = "1bf9pysw1jfgynv692hhaycfxa8ckay1gjw5hz3madrbrynryfzc";
|
201
223
|
type = "gem";
|
202
224
|
};
|
203
|
-
version = "2.
|
225
|
+
version = "2.8.1";
|
204
226
|
};
|
205
227
|
marcel = {
|
206
|
-
dependencies = ["mimemagic"];
|
207
228
|
groups = ["default" "development"];
|
208
229
|
platforms = [];
|
209
230
|
source = {
|
210
231
|
remotes = ["https://rubygems.org"];
|
211
|
-
sha256 = "
|
232
|
+
sha256 = "0kky3yiwagsk8gfbzn3mvl2fxlh3b39v6nawzm4wpjs6xxvvc4x0";
|
212
233
|
type = "gem";
|
213
234
|
};
|
214
|
-
version = "0.
|
235
|
+
version = "1.0.2";
|
215
236
|
};
|
216
237
|
method_source = {
|
217
238
|
groups = ["default" "development"];
|
@@ -223,76 +244,120 @@
|
|
223
244
|
};
|
224
245
|
version = "1.0.0";
|
225
246
|
};
|
226
|
-
|
247
|
+
mini_mime = {
|
248
|
+
groups = ["default" "development"];
|
249
|
+
platforms = [];
|
250
|
+
source = {
|
251
|
+
remotes = ["https://rubygems.org"];
|
252
|
+
sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5";
|
253
|
+
type = "gem";
|
254
|
+
};
|
255
|
+
version = "1.1.2";
|
256
|
+
};
|
257
|
+
mini_portile2 = {
|
258
|
+
groups = ["default" "development"];
|
259
|
+
platforms = [];
|
260
|
+
source = {
|
261
|
+
remotes = ["https://rubygems.org"];
|
262
|
+
sha256 = "0z7f38iq37h376n9xbl4gajdrnwzq284c9v1py4imw3gri2d5cj6";
|
263
|
+
type = "gem";
|
264
|
+
};
|
265
|
+
version = "2.8.2";
|
266
|
+
};
|
267
|
+
minitest = {
|
268
|
+
groups = ["default" "development"];
|
269
|
+
platforms = [];
|
270
|
+
source = {
|
271
|
+
remotes = ["https://rubygems.org"];
|
272
|
+
sha256 = "0ic7i5z88zcaqnpzprf7saimq2f6sad57g5mkkqsrqrcd6h3mx06";
|
273
|
+
type = "gem";
|
274
|
+
};
|
275
|
+
version = "5.18.0";
|
276
|
+
};
|
277
|
+
net-imap = {
|
278
|
+
dependencies = ["date" "net-protocol"];
|
227
279
|
groups = ["default" "development"];
|
228
280
|
platforms = [];
|
229
281
|
source = {
|
230
282
|
remotes = ["https://rubygems.org"];
|
231
|
-
sha256 = "
|
283
|
+
sha256 = "1d996zf3g8xz244791b0qsl9vr7zg4lqnnmf9k2kshr9lki5jam8";
|
232
284
|
type = "gem";
|
233
285
|
};
|
234
286
|
version = "0.3.4";
|
235
287
|
};
|
236
|
-
|
288
|
+
net-pop = {
|
289
|
+
dependencies = ["net-protocol"];
|
237
290
|
groups = ["default" "development"];
|
238
291
|
platforms = [];
|
239
292
|
source = {
|
240
293
|
remotes = ["https://rubygems.org"];
|
241
|
-
sha256 = "
|
294
|
+
sha256 = "1wyz41jd4zpjn0v1xsf9j778qx1vfrl24yc20cpmph8k42c4x2w4";
|
242
295
|
type = "gem";
|
243
296
|
};
|
244
|
-
version = "1.
|
297
|
+
version = "0.1.2";
|
245
298
|
};
|
246
|
-
|
299
|
+
net-protocol = {
|
300
|
+
dependencies = ["timeout"];
|
247
301
|
groups = ["default" "development"];
|
248
302
|
platforms = [];
|
249
303
|
source = {
|
250
304
|
remotes = ["https://rubygems.org"];
|
251
|
-
sha256 = "
|
305
|
+
sha256 = "0dxckrlw4q1lcn3qg4mimmjazmg9bma5gllv72f8js3p36fb3b91";
|
252
306
|
type = "gem";
|
253
307
|
};
|
254
|
-
version = "2.
|
308
|
+
version = "0.2.1";
|
255
309
|
};
|
256
|
-
|
310
|
+
net-smtp = {
|
311
|
+
dependencies = ["net-protocol"];
|
257
312
|
groups = ["default" "development"];
|
258
313
|
platforms = [];
|
259
314
|
source = {
|
260
315
|
remotes = ["https://rubygems.org"];
|
261
|
-
sha256 = "
|
316
|
+
sha256 = "1c6md06hm5bf6rv53sk54dl2vg038pg8kglwv3rayx0vk2mdql9x";
|
262
317
|
type = "gem";
|
263
318
|
};
|
264
|
-
version = "
|
319
|
+
version = "0.3.3";
|
265
320
|
};
|
266
321
|
nio4r = {
|
267
322
|
groups = ["default" "development"];
|
268
323
|
platforms = [];
|
269
324
|
source = {
|
270
325
|
remotes = ["https://rubygems.org"];
|
271
|
-
sha256 = "
|
326
|
+
sha256 = "0w9978zwjf1qhy3amkivab0f9syz6a7k0xgydjidaf7xc831d78f";
|
272
327
|
type = "gem";
|
273
328
|
};
|
274
|
-
version = "2.5.
|
329
|
+
version = "2.5.9";
|
275
330
|
};
|
276
331
|
nokogiri = {
|
277
|
-
dependencies = ["mini_portile2"];
|
332
|
+
dependencies = ["mini_portile2" "racc"];
|
278
333
|
groups = ["default" "development"];
|
279
334
|
platforms = [];
|
280
335
|
source = {
|
281
336
|
remotes = ["https://rubygems.org"];
|
282
|
-
sha256 = "
|
337
|
+
sha256 = "1mr2ibfk874ncv0qbdkynay738w2mfinlkhnbd5lyk5yiw5q1p10";
|
283
338
|
type = "gem";
|
284
339
|
};
|
285
|
-
version = "1.
|
340
|
+
version = "1.15.2";
|
341
|
+
};
|
342
|
+
racc = {
|
343
|
+
groups = ["default" "development"];
|
344
|
+
platforms = [];
|
345
|
+
source = {
|
346
|
+
remotes = ["https://rubygems.org"];
|
347
|
+
sha256 = "09jgz6r0f7v84a7jz9an85q8vvmp743dqcsdm3z9c8rqcqv6pljq";
|
348
|
+
type = "gem";
|
349
|
+
};
|
350
|
+
version = "1.6.2";
|
286
351
|
};
|
287
352
|
rack = {
|
288
353
|
groups = ["default" "development"];
|
289
354
|
platforms = [];
|
290
355
|
source = {
|
291
356
|
remotes = ["https://rubygems.org"];
|
292
|
-
sha256 = "
|
357
|
+
sha256 = "16w217k9z02c4hqizym8dkj6bqmmzx4qdvqpnskgzf174a5pwdxk";
|
293
358
|
type = "gem";
|
294
359
|
};
|
295
|
-
version = "2.2.
|
360
|
+
version = "2.2.7";
|
296
361
|
};
|
297
362
|
rack-test = {
|
298
363
|
dependencies = ["rack"];
|
@@ -300,21 +365,21 @@
|
|
300
365
|
platforms = [];
|
301
366
|
source = {
|
302
367
|
remotes = ["https://rubygems.org"];
|
303
|
-
sha256 = "
|
368
|
+
sha256 = "1ysx29gk9k14a14zsp5a8czys140wacvp91fja8xcja0j1hzqq8c";
|
304
369
|
type = "gem";
|
305
370
|
};
|
306
|
-
version = "
|
371
|
+
version = "2.1.0";
|
307
372
|
};
|
308
373
|
rails = {
|
309
|
-
dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties"
|
374
|
+
dependencies = ["actioncable" "actionmailbox" "actionmailer" "actionpack" "actiontext" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties"];
|
310
375
|
groups = ["development"];
|
311
376
|
platforms = [];
|
312
377
|
source = {
|
313
378
|
remotes = ["https://rubygems.org"];
|
314
|
-
sha256 = "
|
379
|
+
sha256 = "1zip0qhk7pp6cvrir77p6v76wj68zaqik875qr5rapqz9am2pvsp";
|
315
380
|
type = "gem";
|
316
381
|
};
|
317
|
-
version = "
|
382
|
+
version = "7.0.5";
|
318
383
|
};
|
319
384
|
rails-dom-testing = {
|
320
385
|
dependencies = ["activesupport" "nokogiri"];
|
@@ -328,36 +393,36 @@
|
|
328
393
|
version = "2.0.3";
|
329
394
|
};
|
330
395
|
rails-html-sanitizer = {
|
331
|
-
dependencies = ["loofah"];
|
396
|
+
dependencies = ["loofah" "nokogiri"];
|
332
397
|
groups = ["default" "development"];
|
333
398
|
platforms = [];
|
334
399
|
source = {
|
335
400
|
remotes = ["https://rubygems.org"];
|
336
|
-
sha256 = "
|
401
|
+
sha256 = "1pm4z853nyz1bhhqr7fzl44alnx4bjachcr6rh6qjj375sfz3sc6";
|
337
402
|
type = "gem";
|
338
403
|
};
|
339
|
-
version = "1.
|
404
|
+
version = "1.6.0";
|
340
405
|
};
|
341
406
|
railties = {
|
342
|
-
dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor"];
|
407
|
+
dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor" "zeitwerk"];
|
343
408
|
groups = ["default" "development"];
|
344
409
|
platforms = [];
|
345
410
|
source = {
|
346
411
|
remotes = ["https://rubygems.org"];
|
347
|
-
sha256 = "
|
412
|
+
sha256 = "0kn3cx00jnb7bjnh1k2q0dxk0r7nl1a0krgyk5ykxw1wcac81wyw";
|
348
413
|
type = "gem";
|
349
414
|
};
|
350
|
-
version = "
|
415
|
+
version = "7.0.5";
|
351
416
|
};
|
352
417
|
rake = {
|
353
418
|
groups = ["development"];
|
354
419
|
platforms = [];
|
355
420
|
source = {
|
356
421
|
remotes = ["https://rubygems.org"];
|
357
|
-
sha256 = "
|
422
|
+
sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w";
|
358
423
|
type = "gem";
|
359
424
|
};
|
360
|
-
version = "13.0.
|
425
|
+
version = "13.0.6";
|
361
426
|
};
|
362
427
|
rspec = {
|
363
428
|
dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"];
|
@@ -365,10 +430,10 @@
|
|
365
430
|
platforms = [];
|
366
431
|
source = {
|
367
432
|
remotes = ["https://rubygems.org"];
|
368
|
-
sha256 = "
|
433
|
+
sha256 = "171rc90vcgjl8p1bdrqa92ymrj8a87qf6w20x05xq29mljcigi6c";
|
369
434
|
type = "gem";
|
370
435
|
};
|
371
|
-
version = "3.
|
436
|
+
version = "3.12.0";
|
372
437
|
};
|
373
438
|
rspec-core = {
|
374
439
|
dependencies = ["rspec-support"];
|
@@ -376,10 +441,10 @@
|
|
376
441
|
platforms = [];
|
377
442
|
source = {
|
378
443
|
remotes = ["https://rubygems.org"];
|
379
|
-
sha256 = "
|
444
|
+
sha256 = "0l95bnjxdabrn79hwdhn2q1n7mn26pj7y1w5660v5qi81x458nqm";
|
380
445
|
type = "gem";
|
381
446
|
};
|
382
|
-
version = "3.
|
447
|
+
version = "3.12.2";
|
383
448
|
};
|
384
449
|
rspec-expectations = {
|
385
450
|
dependencies = ["diff-lcs" "rspec-support"];
|
@@ -387,10 +452,10 @@
|
|
387
452
|
platforms = [];
|
388
453
|
source = {
|
389
454
|
remotes = ["https://rubygems.org"];
|
390
|
-
sha256 = "
|
455
|
+
sha256 = "05j44jfqlv7j2rpxb5vqzf9hfv7w8ba46wwgxwcwd8p0wzi1hg89";
|
391
456
|
type = "gem";
|
392
457
|
};
|
393
|
-
version = "3.
|
458
|
+
version = "3.12.3";
|
394
459
|
};
|
395
460
|
rspec-mocks = {
|
396
461
|
dependencies = ["diff-lcs" "rspec-support"];
|
@@ -398,83 +463,62 @@
|
|
398
463
|
platforms = [];
|
399
464
|
source = {
|
400
465
|
remotes = ["https://rubygems.org"];
|
401
|
-
sha256 = "
|
466
|
+
sha256 = "1hfm17xakfvwya236graj6c2arr4sb9zasp35q5fykhyz8mhs0w2";
|
402
467
|
type = "gem";
|
403
468
|
};
|
404
|
-
version = "3.
|
469
|
+
version = "3.12.5";
|
405
470
|
};
|
406
471
|
rspec-support = {
|
407
472
|
groups = ["default" "development"];
|
408
473
|
platforms = [];
|
409
474
|
source = {
|
410
475
|
remotes = ["https://rubygems.org"];
|
411
|
-
sha256 = "
|
476
|
+
sha256 = "12y52zwwb3xr7h91dy9k3ndmyyhr3mjcayk0nnarnrzz8yr48kfx";
|
412
477
|
type = "gem";
|
413
478
|
};
|
414
|
-
version = "3.
|
415
|
-
};
|
416
|
-
sprockets = {
|
417
|
-
dependencies = ["concurrent-ruby" "rack"];
|
418
|
-
groups = ["default" "development"];
|
419
|
-
platforms = [];
|
420
|
-
source = {
|
421
|
-
remotes = ["https://rubygems.org"];
|
422
|
-
sha256 = "0jm37zpvvm1arxjwrd6am0wrdbfhrhc5y0l4p2i3p11z04bsvgap";
|
423
|
-
type = "gem";
|
424
|
-
};
|
425
|
-
version = "4.0.0";
|
426
|
-
};
|
427
|
-
sprockets-rails = {
|
428
|
-
dependencies = ["actionpack" "activesupport" "sprockets"];
|
429
|
-
groups = ["default" "development"];
|
430
|
-
platforms = [];
|
431
|
-
source = {
|
432
|
-
remotes = ["https://rubygems.org"];
|
433
|
-
sha256 = "0ab42pm8p5zxpv3sfraq45b9lj39cz9mrpdirm30vywzrwwkm5p1";
|
434
|
-
type = "gem";
|
435
|
-
};
|
436
|
-
version = "3.2.1";
|
479
|
+
version = "3.12.0";
|
437
480
|
};
|
438
481
|
sqlite3 = {
|
482
|
+
dependencies = ["mini_portile2"];
|
439
483
|
groups = ["development"];
|
440
484
|
platforms = [];
|
441
485
|
source = {
|
442
486
|
remotes = ["https://rubygems.org"];
|
443
|
-
sha256 = "
|
487
|
+
sha256 = "0h95kr5529qv786mfk8r2jjdsdi6v7v3k3dpz69mrcc9i0vpdd37";
|
444
488
|
type = "gem";
|
445
489
|
};
|
446
|
-
version = "1.
|
490
|
+
version = "1.6.3";
|
447
491
|
};
|
448
492
|
thor = {
|
449
493
|
groups = ["default" "development"];
|
450
494
|
platforms = [];
|
451
495
|
source = {
|
452
496
|
remotes = ["https://rubygems.org"];
|
453
|
-
sha256 = "
|
497
|
+
sha256 = "0k7j2wn14h1pl4smibasw0bp66kg626drxb59z7rzflch99cd4rg";
|
454
498
|
type = "gem";
|
455
499
|
};
|
456
|
-
version = "1.
|
500
|
+
version = "1.2.2";
|
457
501
|
};
|
458
|
-
|
502
|
+
timeout = {
|
459
503
|
groups = ["default" "development"];
|
460
504
|
platforms = [];
|
461
505
|
source = {
|
462
506
|
remotes = ["https://rubygems.org"];
|
463
|
-
sha256 = "
|
507
|
+
sha256 = "1pfddf51n5fnj4f9ggwj3wbf23ynj0nbxlxqpz12y1gvl9g7d6r6";
|
464
508
|
type = "gem";
|
465
509
|
};
|
466
|
-
version = "0.3.
|
510
|
+
version = "0.3.2";
|
467
511
|
};
|
468
512
|
tzinfo = {
|
469
|
-
dependencies = ["
|
513
|
+
dependencies = ["concurrent-ruby"];
|
470
514
|
groups = ["default" "development"];
|
471
515
|
platforms = [];
|
472
516
|
source = {
|
473
517
|
remotes = ["https://rubygems.org"];
|
474
|
-
sha256 = "
|
518
|
+
sha256 = "16w2g84dzaf3z13gxyzlzbf748kylk5bdgg3n1ipvkvvqy685bwd";
|
475
519
|
type = "gem";
|
476
520
|
};
|
477
|
-
version = "
|
521
|
+
version = "2.0.6";
|
478
522
|
};
|
479
523
|
websocket-driver = {
|
480
524
|
dependencies = ["websocket-extensions"];
|
@@ -482,19 +526,29 @@
|
|
482
526
|
platforms = [];
|
483
527
|
source = {
|
484
528
|
remotes = ["https://rubygems.org"];
|
485
|
-
sha256 = "
|
529
|
+
sha256 = "0a3bwxd9v3ghrxzjc4vxmf4xa18c6m4xqy5wb0yk5c6b9psc7052";
|
486
530
|
type = "gem";
|
487
531
|
};
|
488
|
-
version = "0.7.
|
532
|
+
version = "0.7.5";
|
489
533
|
};
|
490
534
|
websocket-extensions = {
|
491
535
|
groups = ["default" "development"];
|
492
536
|
platforms = [];
|
493
537
|
source = {
|
494
538
|
remotes = ["https://rubygems.org"];
|
495
|
-
sha256 = "
|
539
|
+
sha256 = "0hc2g9qps8lmhibl5baa91b4qx8wqw872rgwagml78ydj8qacsqw";
|
540
|
+
type = "gem";
|
541
|
+
};
|
542
|
+
version = "0.1.5";
|
543
|
+
};
|
544
|
+
zeitwerk = {
|
545
|
+
groups = ["default" "development"];
|
546
|
+
platforms = [];
|
547
|
+
source = {
|
548
|
+
remotes = ["https://rubygems.org"];
|
549
|
+
sha256 = "0ck6bj7wa73dkdh13735jl06k6cfny98glxjkas82aivlmyzqqbk";
|
496
550
|
type = "gem";
|
497
551
|
};
|
498
|
-
version = "
|
552
|
+
version = "2.6.8";
|
499
553
|
};
|
500
|
-
}
|
554
|
+
}
|