rails-rfc6570 3.1.0 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e08c49a682b11d96a082bba20aa20a83e75b941aa52d63526da319a0fd102a45
4
- data.tar.gz: 99b8365786d3d1be62c62bc07b440a142467ce398d52738ed78e411d2efa7622
3
+ metadata.gz: f1024d8d48a4b71d05fef63d55be57a7615070e7e337f55ab46b4e5f7f2bebe3
4
+ data.tar.gz: 5af240717ecd2ce3231c51f9162bb938b0880228728103d6f3cbf2f180dad475
5
5
  SHA512:
6
- metadata.gz: caa9fd793ed6e78daeb352a487379e221f10ada497d4e5919cdd7e696ced43c00bb36deab883994887b48c6b9e2732bc7f0b248b9d962a18f574bfe27f986026
7
- data.tar.gz: 4eda69cef8e02ad3ddb3ec77874b1a129b901562f67ac2d6bfbe70f466f93cdf83e023298629ffb328316c38854093251eb69e97341a6847dd80e67ced951ebc
6
+ metadata.gz: d5585791e180636510de263564a9f1104fb888b4455efaed5351d848288eabecb45a4e58df6ff4354e7a4fce28203d154ec8bb129bfcbb8f8ebb1aae3bbc0770
7
+ data.tar.gz: 5518b0541f5c7331202383b5fd9686e358ddf7fc66820b8c2932e0f6b7fbc45470d3fe9eff1d38b63f06ba3626362c63dbeae1af84baf415f7b0be8a7aa16da9
data/CHANGELOG.md CHANGED
@@ -15,6 +15,22 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
15
15
 
16
16
  ### Breaks
17
17
 
18
+ ## 3.3.0 - (2024-11-25)
19
+
20
+ ---
21
+
22
+ ### New
23
+
24
+ - Support Rails 8.0 by @jgraichen
25
+
26
+ ## 3.2.0 - (2024-08-24)
27
+
28
+ ---
29
+
30
+ ### New
31
+
32
+ - Add support for Rails 7.2 by @jgraichen
33
+
18
34
  ## 3.1.0 - (2023-11-28)
19
35
 
20
36
  ---
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # Rails::RFC6570
2
2
 
3
+ [![Gem Version](https://img.shields.io/gem/v/rails-rfc6570?logo=ruby)](https://rubygems.org/gems/rails-rfc6570)
3
4
  [![Build Status](https://img.shields.io/github/actions/workflow/status/jgraichen/rails-rfc6570/test.yml?logo=github)](https://github.com/jgraichen/rails-rfc6570/actions/workflows/test.yml)
4
5
 
5
- Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 6.1, 7.0, 7.1 and Ruby 2.7, 3.0, 3.1, 3.2.
6
+ Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 6.1, 7.0, 7.1, 7.2 and Ruby 2.7, 3.0, 3.1, 3.2, 3.3.
6
7
 
7
8
  ## Installation
8
9
 
@@ -4,7 +4,7 @@ module Rails
4
4
  module RFC6570
5
5
  module VERSION
6
6
  MAJOR = 3
7
- MINOR = 1
7
+ MINOR = 3
8
8
  PATCH = 0
9
9
  STAGE = nil
10
10
 
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.required_ruby_version = '>= 2.7'
29
29
 
30
- spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 7.2'
31
- spec.add_runtime_dependency 'addressable', '~> 2.3'
30
+ spec.add_dependency 'actionpack', '>= 4.2', '< 8.1'
31
+ spec.add_dependency 'addressable', '~> 2.3'
32
32
  end
@@ -190,3 +190,243 @@ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 515)
190
190
  Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
191
191
  Processing by APIController#action as HTML
192
192
  Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 595)
193
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
194
+ Processing by APIController#action as HTML
195
+ Completed 200 OK in 25ms (Views: 3.0ms | Allocations: 37431)
196
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
197
+ Processing by APIController#action as HTML
198
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 535)
199
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
200
+ Processing by APIController#action as HTML
201
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 535)
202
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
203
+ Processing by APIController#action as HTML
204
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 535)
205
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
206
+ Processing by APIController#action as HTML
207
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 535)
208
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
209
+ Processing by APIController#action as HTML
210
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 535)
211
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
212
+ Processing by APIController#action as HTML
213
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 535)
214
+ Started GET "/action" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
215
+ Processing by APIController#action as HTML
216
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 618)
217
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
218
+ Processing by APIController#index as HTML
219
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 496)
220
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
221
+ Processing by APIController#index as HTML
222
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
223
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
224
+ Processing by APIController#index as HTML
225
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
226
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
227
+ Processing by APIController#index as HTML
228
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
229
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
230
+ Processing by APIController#index as HTML
231
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
232
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
233
+ Processing by APIController#index as HTML
234
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
235
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
236
+ Processing by APIController#index as HTML
237
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
238
+ Started GET "/" for 127.0.0.1 at 2024-03-09 18:22:20 +0100
239
+ Processing by APIController#index as HTML
240
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 298)
241
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
242
+ Processing by APIController#index as HTML
243
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.0ms)
244
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
245
+ Processing by APIController#index as HTML
246
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
247
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
248
+ Processing by APIController#index as HTML
249
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
250
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
251
+ Processing by APIController#index as HTML
252
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
253
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
254
+ Processing by APIController#index as HTML
255
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
256
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
257
+ Processing by APIController#index as HTML
258
+ Completed 200 OK in 3ms (Views: 0.0ms | GC: 2.7ms)
259
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
260
+ Processing by APIController#index as HTML
261
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
262
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
263
+ Processing by APIController#index as HTML
264
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
265
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
266
+ Processing by APIController#action as HTML
267
+ Completed 200 OK in 9ms (Views: 0.0ms | GC: 0.4ms)
268
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
269
+ Processing by APIController#action as HTML
270
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
271
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
272
+ Processing by APIController#action as HTML
273
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
274
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
275
+ Processing by APIController#action as HTML
276
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
277
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
278
+ Processing by APIController#action as HTML
279
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
280
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
281
+ Processing by APIController#action as HTML
282
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
283
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
284
+ Processing by APIController#action as HTML
285
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
286
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:52:15 +0200
287
+ Processing by APIController#action as HTML
288
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
289
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
290
+ Processing by APIController#action as HTML
291
+ Completed 200 OK in 29ms (Views: 0.2ms | GC: 20.7ms)
292
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
293
+ Processing by APIController#action as HTML
294
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.0ms)
295
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
296
+ Processing by APIController#action as HTML
297
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
298
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
299
+ Processing by APIController#action as HTML
300
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
301
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
302
+ Processing by APIController#action as HTML
303
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
304
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
305
+ Processing by APIController#action as HTML
306
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.0ms)
307
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
308
+ Processing by APIController#action as HTML
309
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
310
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
311
+ Processing by APIController#action as HTML
312
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
313
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
314
+ Processing by APIController#index as HTML
315
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
316
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
317
+ Processing by APIController#index as HTML
318
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
319
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
320
+ Processing by APIController#index as HTML
321
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
322
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
323
+ Processing by APIController#index as HTML
324
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
325
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
326
+ Processing by APIController#index as HTML
327
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
328
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
329
+ Processing by APIController#index as HTML
330
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
331
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
332
+ Processing by APIController#index as HTML
333
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
334
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:58:30 +0200
335
+ Processing by APIController#index as HTML
336
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
337
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
338
+ Processing by APIController#action as HTML
339
+ Completed 200 OK in 30ms (Views: 0.1ms | GC: 20.3ms)
340
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
341
+ Processing by APIController#action as HTML
342
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.0ms)
343
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
344
+ Processing by APIController#action as HTML
345
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
346
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
347
+ Processing by APIController#action as HTML
348
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
349
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
350
+ Processing by APIController#action as HTML
351
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
352
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
353
+ Processing by APIController#action as HTML
354
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
355
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
356
+ Processing by APIController#action as HTML
357
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
358
+ Started GET "/action" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
359
+ Processing by APIController#action as HTML
360
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
361
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
362
+ Processing by APIController#index as HTML
363
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
364
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
365
+ Processing by APIController#index as HTML
366
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
367
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
368
+ Processing by APIController#index as HTML
369
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
370
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
371
+ Processing by APIController#index as HTML
372
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
373
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
374
+ Processing by APIController#index as HTML
375
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
376
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
377
+ Processing by APIController#index as HTML
378
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
379
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
380
+ Processing by APIController#index as HTML
381
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
382
+ Started GET "/" for 127.0.0.1 at 2024-08-24 12:59:02 +0200
383
+ Processing by APIController#index as HTML
384
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
385
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
386
+ Processing by APIController#index as HTML
387
+ Completed 200 OK in 1ms (Views: 0.1ms | GC: 0.0ms)
388
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
389
+ Processing by APIController#index as HTML
390
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
391
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
392
+ Processing by APIController#index as HTML
393
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
394
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
395
+ Processing by APIController#index as HTML
396
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.0ms)
397
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
398
+ Processing by APIController#index as HTML
399
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
400
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
401
+ Processing by APIController#index as HTML
402
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
403
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
404
+ Processing by APIController#index as HTML
405
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
406
+ Started GET "/" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
407
+ Processing by APIController#index as HTML
408
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.0ms)
409
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
410
+ Processing by APIController#action as HTML
411
+ Completed 200 OK in 14ms (Views: 0.0ms | GC: 3.8ms)
412
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
413
+ Processing by APIController#action as HTML
414
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
415
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
416
+ Processing by APIController#action as HTML
417
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
418
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
419
+ Processing by APIController#action as HTML
420
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
421
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
422
+ Processing by APIController#action as HTML
423
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
424
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
425
+ Processing by APIController#action as HTML
426
+ Completed 200 OK in 0ms (Views: 0.1ms | GC: 0.1ms)
427
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
428
+ Processing by APIController#action as HTML
429
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
430
+ Started GET "/action" for 127.0.0.1 at 2024-11-25 14:14:19 +0100
431
+ Processing by APIController#action as HTML
432
+ Completed 200 OK in 0ms (Views: 0.0ms | GC: 0.0ms)
data/spec/spec_helper.rb CHANGED
@@ -1,14 +1,17 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Coverage
4
3
  require 'simplecov'
5
- SimpleCov.start
4
+ require 'simplecov-cobertura'
6
5
 
7
- if ENV['CI']
8
- require 'codecov'
9
- SimpleCov.formatter = SimpleCov::Formatter::Codecov
6
+ SimpleCov.start do
7
+ add_filter 'spec'
10
8
  end
11
9
 
10
+ SimpleCov.formatters = [
11
+ SimpleCov::Formatter::HTMLFormatter,
12
+ SimpleCov::Formatter::CoberturaFormatter,
13
+ ]
14
+
12
15
  ENV['RAILS_ENV'] ||= 'test'
13
16
  require File.expand_path('dummy/config/environment', __dir__)
14
17
  require 'rspec/rails'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-rfc6570
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-27 00:00:00.000000000 Z
11
+ date: 2024-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '4.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '7.2'
22
+ version: '8.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '4.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '7.2'
32
+ version: '8.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: addressable
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -44,7 +44,7 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '2.3'
47
- description:
47
+ description:
48
48
  email:
49
49
  - jgraichen@altimos.de
50
50
  executables: []
@@ -97,7 +97,7 @@ licenses:
97
97
  - MIT
98
98
  metadata:
99
99
  rubygems_mfa_required: 'true'
100
- post_install_message:
100
+ post_install_message:
101
101
  rdoc_options: []
102
102
  require_paths:
103
103
  - lib
@@ -112,8 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  - !ruby/object:Gem::Version
113
113
  version: '0'
114
114
  requirements: []
115
- rubygems_version: 3.4.22
116
- signing_key:
115
+ rubygems_version: 3.5.22
116
+ signing_key:
117
117
  specification_version: 4
118
118
  summary: Pragmatical access to your Rails routes as RFC6570 URI templates.
119
119
  test_files: []