commonmeta-ruby 3.8.2 → 3.8.3

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: 120ed85370f97abfff70ce77e682f54a469f04ce9be3b1397a4ca63223b8426e
4
- data.tar.gz: da3395f12d5a81781ea465b6ca4879f3f70239667f3d203d8fefecaff2bc8c2e
3
+ metadata.gz: f92c91c3ea4495bb052b4c316d146566a9bf0c784e2edf55134f4ebef50156a9
4
+ data.tar.gz: 6b70e63796e13193ae0782775700498588bd289ad086e266e05b0eba90bc29a3
5
5
  SHA512:
6
- metadata.gz: 9d8c606c1907765e252874253118e35165dfc0c7368c86c04927ee51ab8b1b5d417f08cc8fd8a8e2126e3a13175b06c344b94c4e8b35c2b99fb705ffe7c94657
7
- data.tar.gz: c98f22a9d7f77dccc71500d91c42206332e320bf17cac6a4d994ecccee9232f490bdd2c0369e4c5100a17807a8d96890d59461515edc1b4b9772c09242515e93
6
+ metadata.gz: d526121e057c30beec3568834cb972e6f870f1d681f1a37d223aa4b79a5bfb5943a79bbd699c50512ae0ad6c90313e392f4e1b1fc1e07f4181015228dfcacb3a
7
+ data.tar.gz: a7646d597a54a2e8e5f02af0650eccb80695d2e6706e346b756fbbd591bcdb1bf13e530c2ffbd8a55d39bae7dbf173a9c1f8f8489546bcf01dd6a6b99994d15f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- commonmeta-ruby (3.8.2)
4
+ commonmeta-ruby (3.8.3)
5
5
  activesupport (>= 4.2.5, < 8.0)
6
6
  addressable (~> 2.8.1, < 2.8.2)
7
7
  base32-url (>= 0.7.0, < 1)
@@ -110,7 +110,8 @@ module Commonmeta
110
110
 
111
111
  [{ "mimeType" => "text/markdown", "url" => "https://api.rogue-scholar.org/posts/#{doi}.md" },
112
112
  { "mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/#{doi}.pdf" },
113
- { "mimeType" => "application/epub+zip", "url" => "https://api.rogue-scholar.org/posts/#{doi}.epub" }]
113
+ { "mimeType" => "application/epub+zip", "url" => "https://api.rogue-scholar.org/posts/#{doi}.epub" },
114
+ { "mimeType" => "application/xml", "url" => "https://api.rogue-scholar.org/posts/#{doi}.xml" }]
114
115
  end
115
116
 
116
117
  def get_references(meta)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmeta
4
- VERSION = '3.8.2'
4
+ VERSION = '3.8.3'
5
5
  end
@@ -36,7 +36,7 @@ describe Commonmeta::Metadata, vcr: true do
36
36
  # expect(subject.valid?).to be true
37
37
  expect(subject.id).to eq("https://doi.org/10.53731/4nwxn-frt36")
38
38
  expect(subject.url).to eq("https://blog.front-matter.io/posts/does-it-compose")
39
- expect(subject.files.length).to eq(3)
39
+ expect(subject.files.length).to eq(4)
40
40
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.53731/4nwxn-frt36.pdf")
41
41
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "5bb66e92-5cb9-4659-8aca-20e486b695c9", "alternateIdentifierType" => "UUID" }])
42
42
  expect(subject.type).to eq("Article")
@@ -62,7 +62,7 @@ describe Commonmeta::Metadata, vcr: true do
62
62
  # expect(subject.valid?).to be true
63
63
  expect(subject.id).to eq("https://doi.org/10.53731/r79v4e1-97aq74v-ag578")
64
64
  expect(subject.url).to eq("https://blog.front-matter.io/posts/differences-between-orcid-and-datacite-metadata")
65
- expect(subject.files.length).to eq(3)
65
+ expect(subject.files.length).to eq(4)
66
66
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.53731/r79v4e1-97aq74v-ag578.pdf")
67
67
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "8a4de443-3347-4b82-b57d-e3c82b6485fc", "alternateIdentifierType" => "UUID" }])
68
68
  expect(subject.type).to eq("Article")
@@ -89,7 +89,7 @@ describe Commonmeta::Metadata, vcr: true do
89
89
  # expect(subject.valid?).to be true
90
90
  expect(subject.id).to eq("https://doi.org/10.53731/r294649-6f79289-8cw18")
91
91
  expect(subject.url).to eq("https://blog.front-matter.io/posts/nine-simple-ways-to-make-it-easier-to-re-use-your-data")
92
- expect(subject.files.length).to eq(3)
92
+ expect(subject.files.length).to eq(4)
93
93
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.53731/r294649-6f79289-8cw18.pdf")
94
94
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "2bdebfc5-e02e-42c2-90c5-e873e2d0435d", "alternateIdentifierType" => "UUID" }])
95
95
  expect(subject.type).to eq("Article")
@@ -116,7 +116,7 @@ describe Commonmeta::Metadata, vcr: true do
116
116
  # expect(subject.valid?).to be true
117
117
  expect(subject.id).to eq("https://doi.org/10.53731/r79s4nh-97aq74v-ag4t1")
118
118
  expect(subject.url).to eq("https://blog.front-matter.io/posts/tracking-the-growth-of-the-pid-graph")
119
- expect(subject.files.length).to eq(3)
119
+ expect(subject.files.length).to eq(4)
120
120
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.53731/r79s4nh-97aq74v-ag4t1.pdf")
121
121
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "e58dc9c8-b870-4db2-8896-238b3246c551", "alternateIdentifierType" => "UUID" }])
122
122
  expect(subject.type).to eq("Article")
@@ -195,7 +195,7 @@ describe Commonmeta::Metadata, vcr: true do
195
195
  # expect(subject.valid?).to be true
196
196
  expect(subject.id).to eq("https://doi.org/10.53731/ffbx660-083tnag")
197
197
  expect(subject.url).to eq("https://syldavia-gazette.org/guinea-worms-chatgpt-neanderthals")
198
- expect(subject.files.length).to eq(3)
198
+ expect(subject.files.length).to eq(4)
199
199
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.53731/ffbx660-083tnag.pdf")
200
200
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "0022b9ef-525a-4a79-81ad-13411697f58a", "alternateIdentifierType" => "UUID" }])
201
201
  expect(subject.type).to eq("Article")
@@ -220,7 +220,7 @@ describe Commonmeta::Metadata, vcr: true do
220
220
  # expect(subject.valid?).to be true
221
221
  expect(subject.id).to eq("https://doi.org/10.59350/kz04m-s8z58")
222
222
  expect(subject.url).to eq("https://wisspub.net/2023/05/23/eu-mitgliedstaaten-betonen-die-rolle-von-wissenschaftsgeleiteten-open-access-modellen-jenseits-von-apcs")
223
- expect(subject.files.length).to eq(3)
223
+ expect(subject.files.length).to eq(4)
224
224
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/kz04m-s8z58.pdf")
225
225
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "1c578558-1324-4493-b8af-84c49eabc52f", "alternateIdentifierType" => "UUID" }])
226
226
  expect(subject.type).to eq("Article")
@@ -246,7 +246,7 @@ describe Commonmeta::Metadata, vcr: true do
246
246
  # expect(subject.valid?).to be true
247
247
  expect(subject.id).to eq("https://doi.org/10.59350/faeph-x4x84")
248
248
  expect(subject.url).to eq("https://wayback.archive-it.org/22143/20231103191454/https://project-thor.eu/2016/08/10/orcid-integration-in-pangaea")
249
- expect(subject.files.length).to eq(3)
249
+ expect(subject.files.length).to eq(4)
250
250
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/faeph-x4x84.pdf")
251
251
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "570c8129-e867-49e6-8517-bd783627e76e", "alternateIdentifierType" => "UUID" }])
252
252
  expect(subject.type).to eq("Article")
@@ -278,7 +278,7 @@ describe Commonmeta::Metadata, vcr: true do
278
278
  # expect(subject.valid?).to be true
279
279
  expect(subject.id).to eq("https://doi.org/10.59350/hke8v-d1e66")
280
280
  expect(subject.url).to eq("https://svpow.com/2023/06/09/new-paper-curtice-et-al-2023-on-the-first-haplocanthosaurus-from-dry-mesa")
281
- expect(subject.files.length).to eq(3)
281
+ expect(subject.files.length).to eq(4)
282
282
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/hke8v-d1e66.pdf")
283
283
  expect(subject.type).to eq("Article")
284
284
  expect(subject.contributors.length).to eq(1)
@@ -305,7 +305,7 @@ describe Commonmeta::Metadata, vcr: true do
305
305
  # expect(subject.valid?).to be true
306
306
  expect(subject.id).to eq("https://doi.org/10.59350/tpa8t-j6292")
307
307
  expect(subject.url).to eq("https://www.samuelmoore.org/2023/04/20/how-to-cultivate-good-closures-scaling-small-and-the-limits-of-openness")
308
- expect(subject.files.length).to eq(3)
308
+ expect(subject.files.length).to eq(4)
309
309
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/tpa8t-j6292.pdf")
310
310
  expect(subject.type).to eq("Article")
311
311
  expect(subject.contributors.length).to eq(1)
@@ -331,7 +331,7 @@ describe Commonmeta::Metadata, vcr: true do
331
331
  # expect(subject.valid?).to be true
332
332
  expect(subject.id).to eq("https://doi.org/10.59350/tfahc-rp566")
333
333
  expect(subject.url).to eq("https://blog.oa.works/nature-features-oa-reports-work-putting-oa-policy-into-practice")
334
- expect(subject.files.length).to eq(3)
334
+ expect(subject.files.length).to eq(4)
335
335
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/tfahc-rp566.pdf")
336
336
  expect(subject.type).to eq("Article")
337
337
  expect(subject.contributors.length).to eq(1)
@@ -382,7 +382,7 @@ describe Commonmeta::Metadata, vcr: true do
382
382
  # expect(subject.valid?).to be true
383
383
  expect(subject.id).to eq("https://doi.org/10.59350/zwdq7-waa43")
384
384
  expect(subject.url).to eq("https://citationstyles.org/2020/07/11/seeking-public-comment-on-CSL-1-0-2")
385
- expect(subject.files.length).to eq(3)
385
+ expect(subject.files.length).to eq(4)
386
386
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/zwdq7-waa43.pdf")
387
387
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "efdacb04-bcec-49d7-b689-ab3eab0634bf", "alternateIdentifierType" => "UUID" }])
388
388
  expect(subject.type).to eq("Article")
@@ -409,7 +409,7 @@ describe Commonmeta::Metadata, vcr: true do
409
409
  # expect(subject.valid?).to be true
410
410
  expect(subject.id).to eq("https://doi.org/10.59350/2shz7-ehx26")
411
411
  expect(subject.url).to eq("https://libscie.org/ku-leuven-supports-researchequals")
412
- expect(subject.files.length).to eq(3)
412
+ expect(subject.files.length).to eq(4)
413
413
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/2shz7-ehx26.pdf")
414
414
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "5561f8e4-2ff1-4186-a8d5-8dacb3afe414", "alternateIdentifierType" => "UUID" }])
415
415
  expect(subject.type).to eq("Article")
@@ -436,7 +436,7 @@ describe Commonmeta::Metadata, vcr: true do
436
436
  # expect(subject.valid?).to be true
437
437
  expect(subject.id).to eq("https://doi.org/10.59350/33es7-fqz31")
438
438
  expect(subject.url).to eq("https://lab.sub.uni-goettingen.de/welcome.html")
439
- expect(subject.files.length).to eq(3)
439
+ expect(subject.files.length).to eq(4)
440
440
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/33es7-fqz31.pdf")
441
441
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "a163e340-5b3c-4736-9ab0-8c54fdff6a3c", "alternateIdentifierType" => "UUID" }])
442
442
  expect(subject.type).to eq("Article")
@@ -463,7 +463,7 @@ describe Commonmeta::Metadata, vcr: true do
463
463
  # expect(subject.valid?).to be true
464
464
  expect(subject.id).to eq("https://doi.org/10.59350/63055-a8604")
465
465
  expect(subject.url).to eq("http://sfmatheson.blogspot.com/2023/01/quintessence-of-dust-2023-restart-why.html")
466
- expect(subject.files.length).to eq(3)
466
+ expect(subject.files.length).to eq(4)
467
467
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/63055-a8604.pdf")
468
468
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "1898d2d7-4d87-4487-96c4-3073cf99e9a5", "alternateIdentifierType" => "UUID" }])
469
469
  expect(subject.type).to eq("Article")
@@ -490,7 +490,7 @@ describe Commonmeta::Metadata, vcr: true do
490
490
  # expect(subject.valid?).to be true
491
491
  expect(subject.id).to eq("https://doi.org/10.59350/9gfjs-pey70")
492
492
  expect(subject.url).to eq("https://flavoursofopen.science/grundlagen-fur-die-entwicklung-einer-open-scholarship-strategie")
493
- expect(subject.files.length).to eq(3)
493
+ expect(subject.files.length).to eq(4)
494
494
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/9gfjs-pey70.pdf")
495
495
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "f3dc29da-0481-4f3b-8110-4c07260fca67", "alternateIdentifierType" => "UUID" }])
496
496
  expect(subject.type).to eq("Article")
@@ -518,7 +518,7 @@ describe Commonmeta::Metadata, vcr: true do
518
518
  # expect(subject.valid?).to be true
519
519
  expect(subject.id).to eq("https://doi.org/10.59350/bbcsr-r4b59")
520
520
  expect(subject.url).to eq("https://markrubin.substack.com/p/the-preregistration-prescriptiveness")
521
- expect(subject.files.length).to eq(3)
521
+ expect(subject.files.length).to eq(4)
522
522
  expect(subject.files[1]).to eq("mimeType" => "application/pdf", "url" => "https://api.rogue-scholar.org/posts/10.59350/bbcsr-r4b59.pdf")
523
523
  expect(subject.alternate_identifiers).to eq([{ "alternateIdentifier" => "2b105b29-acbc-4eae-9ff1-368803f36a4d", "alternateIdentifierType" => "UUID" }])
524
524
  expect(subject.type).to eq("Article")
@@ -232,7 +232,7 @@ describe Commonmeta::Metadata, vcr: true do
232
232
  "title")).to eq("Attempts at automating journal subject classification")
233
233
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "5d14ffacb9ac4e20bdc0d9248df4e80d", "item_number_type" => "uuid")
234
234
  expect(crossref_xml.dig("group_title")).to eq("Humanities")
235
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
235
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
236
236
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.54900/n6dnt-xpq48.pdf", "mime_type" => "application/pdf")
237
237
  end
238
238
 
@@ -266,7 +266,7 @@ describe Commonmeta::Metadata, vcr: true do
266
266
  expect(crossref_xml.dig("citation_list", "citation").last).to eq("article_title" => "The Research Software Alliance (ReSA) and the community landscape", "cYear" => "2020", "doi" => "10.5281/zenodo.3699950", "key" => "ref11")
267
267
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "954f81380ecd409087c5cef1297f1470", "item_number_type" => "uuid")
268
268
  expect(crossref_xml.dig("group_title")).to eq("Humanities")
269
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
269
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
270
270
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.54900/zwm7q-vet94.pdf", "mime_type" => "application/pdf")
271
271
  end
272
272
 
@@ -297,7 +297,7 @@ describe Commonmeta::Metadata, vcr: true do
297
297
  "title")).to eq("EU-Mitgliedstaaten betonen die Rolle von wissenschaftsgeleiteten Open-Access-Modellen jenseits von APCs")
298
298
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "1c57855813244493b8af84c49eabc52f", "item_number_type" => "uuid")
299
299
  expect(crossref_xml.dig("group_title")).to eq("Social sciences")
300
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
300
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
301
301
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.59350/9ry27-7cz42.pdf", "mime_type" => "application/pdf")
302
302
  end
303
303
 
@@ -327,7 +327,7 @@ describe Commonmeta::Metadata, vcr: true do
327
327
  "title")).to eq("KU Leuven supports ResearchEquals")
328
328
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "5561f8e42ff14186a8d58dacb3afe414", "item_number_type" => "uuid")
329
329
  expect(crossref_xml.dig("group_title")).to eq("Social sciences")
330
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
330
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
331
331
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.59350/9ry27-7cz42.pdf", "mime_type" => "application/pdf")
332
332
  end
333
333
 
@@ -368,7 +368,7 @@ describe Commonmeta::Metadata, vcr: true do
368
368
  "title")).to eq("ORCID Integration Series: PANGAEA")
369
369
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "570c8129e86749e68517bd783627e76e", "item_number_type" => "uuid")
370
370
  expect(crossref_xml.dig("group_title")).to eq("Computer and information sciences")
371
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
371
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
372
372
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.59350/faeph-x4x84.pdf", "mime_type" => "application/pdf")
373
373
  end
374
374
 
@@ -407,7 +407,7 @@ describe Commonmeta::Metadata, vcr: true do
407
407
  "title")).to eq("Differences between ORCID and DataCite Metadata")
408
408
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "8a4de44333474b82b57de3c82b6485fc", "item_number_type" => "uuid")
409
409
  expect(crossref_xml.dig("group_title")).to eq("Computer and information sciences")
410
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
410
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
411
411
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.53731/r79v4e1-97aq74v-ag578.pdf", "mime_type" => "application/pdf")
412
412
  end
413
413
 
@@ -445,7 +445,7 @@ describe Commonmeta::Metadata, vcr: true do
445
445
  "title")).to eq("Tracking the Growth of the PID Graph")
446
446
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "e58dc9c8b8704db28896238b3246c551", "item_number_type" => "uuid")
447
447
  expect(crossref_xml.dig("group_title")).to eq("Computer and information sciences")
448
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
448
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
449
449
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.53731/r79s4nh-97aq74v-ag4t1.pdf", "mime_type" => "application/pdf")
450
450
  end
451
451
 
@@ -480,7 +480,7 @@ describe Commonmeta::Metadata, vcr: true do
480
480
  "title")).to eq("Welcome to the Lab")
481
481
  expect(crossref_xml.dig("item_number")).to eq("__content__" => "a163e3405b3c47369ab08c54fdff6a3c", "item_number_type" => "uuid")
482
482
  expect(crossref_xml.dig("group_title")).to eq("Computer and information sciences")
483
- expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(4)
483
+ expect(crossref_xml.dig("doi_data", "collection", "item").length).to eq(5)
484
484
  expect(crossref_xml.dig("doi_data", "collection", "item", 2, "resource")).to eq("__content__" => "https://api.rogue-scholar.org/posts/10.59350/9ry27-7cz42.pdf", "mime_type" => "application/pdf")
485
485
  end
486
486
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmeta-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.8.2
4
+ version: 3.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Fenner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-09 00:00:00.000000000 Z
11
+ date: 2024-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport