JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 2454,
"has_wiki": true,
"homepage": null,
"languages": {
"HTML": 330,
"Ruby": 77026
},
"pushed_at": "2026-07-28T13:08:51Z",
"created_at": "2012-07-10T19:25:11Z",
"owner_type": "User",
"updated_at": "2026-07-28T13:11:44Z",
"description": "Translate your rails app route to various languages without the hassle",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Ruby",
"significant_languages": [
"Ruby"
]
},
"owner": {
"blog": "http://enric.lluell.es",
"name": "Enric Lluelles",
"type": "User",
"login": "enriclluelles",
"company": null,
"location": "Barcelona",
"followers": 98,
"avatar_url": "https://avatars.githubusercontent.com/u/79768?v=4",
"created_at": "2009-05-01T00:02:19Z",
"is_verified": null,
"public_repos": 72,
"account_age_days": 6297
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v16.0.1",
"kind": "patch",
"published_at": "2026-05-16T13:43:59Z"
},
{
"tag": "v16.0.0",
"kind": "major",
"published_at": "2026-03-18T19:29:30Z"
},
{
"tag": "v15.2.0",
"kind": "minor",
"published_at": "2025-07-06T13:01:38Z"
},
{
"tag": "v15.1.0",
"kind": "minor",
"published_at": "2025-06-15T15:42:02Z"
},
{
"tag": "v15.0.0",
"kind": "major",
"published_at": "2025-06-12T20:46:03Z"
},
{
"tag": "v14.2.0",
"kind": "minor",
"published_at": "2024-11-08T08:41:01Z"
},
{
"tag": "v14.1.2",
"kind": "patch",
"published_at": "2024-05-27T13:36:31Z"
},
{
"tag": "v14.1.1",
"kind": "patch",
"published_at": "2023-12-19T14:02:54Z"
},
{
"tag": "v14.1.0",
"kind": "minor",
"published_at": "2023-12-19T13:43:47Z"
},
{
"tag": "v14.0.0",
"kind": "major",
"published_at": "2023-09-03T08:04:51Z"
}
],
"recent_commits": [
{
"oid": "ab5601cc5c779316052c6c8f2997d665c0d2f050",
"body": null,
"is_bot": false,
"headline": "Update changelog and version (#362)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-07-28T13:07:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2539fbb06e053074ec62f03abcc93920c8709b6a",
"body": "`Translator::RouteHelpers.add` fetched\n`named_route_collection.helper_names` and pushed the helper it was about\nto define onto the result unless already present.\n\nNeither half of that could take effect.\n`NamedRouteCollection#helper_names` builds a fresh array on every call,\nso the push was made to a\n[…]\ngenerated\n first ||= per\n puts format('%8d %10d %7.0fms %8.1fus (%.1fx)',\n n, generated, ms, per, per / first)\n end\n\nCo-authored-by: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Drop an ineffective helper_names lookup (#361)",
"author_name": "Marcel Eeken",
"author_login": "MarcelEeken",
"committed_at": "2026-07-28T13:01:51Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "9452e7f66a87707df498d7a784fd7e6198a761de",
"body": "`Translator.translate_name` was handed `named_routes.names` so it could\ntest whether the name it was about to generate already existed.\n`NamedRouteCollection#names` allocates a fresh array of every route name\ndefined so far, and `exclude?` then scans it linearly, so the cost grew\nwith the size of th\n[…]\n work\nrather than its duration, counting calls to `names`, so the lookup\ncannot come back unnoticed and CI does not depend on a timing threshold.\n\nCo-authored-by: Claude Opus 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Use a hash lookup for translated route names (#360)",
"author_name": "Marcel Eeken",
"author_login": "MarcelEeken",
"committed_at": "2026-07-28T12:36:05Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "ff2d516ace6ad78f1b6a4154548b3eba163eb92d",
"body": null,
"is_bot": false,
"headline": "Update to SimpleCov 1.0 (#359)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-07-16T10:42:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68d03d8f0419235ce27004106c5c3c86e19fa9d7",
"body": "minitest 5.x is enforced at Rails 7.2 level.\n\nAdditionally, remove minitest-mock which does not appear to be used.\nLast used in 2fb75a2\n\nRef: rails/rails#56442",
"is_bot": false,
"headline": "Relax minitest dependency to allow version 6 (#358)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-06-16T15:43:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "915e52cd1dc639040dadc37da487e0c68898696d",
"body": "* docs: clarify generate_unnamed_unlocalized_routes behavior\n\nThe current description says \"root_path will redirect to /en or /es\",\nbut the flag does not perform a redirect. As asserted by the gem's own\ntest (test/routing_test.rb test_generate_unnamed_unlocalized_routes),\nthe bare path routes to the\n[…]\nh by I18n.locale\n- Calls out safe use case (legacy bare paths) and the multi-locale\n SEO caveat without declaring the flag harmful\n- Points to #110 for readers who still expect a redirect\n\nRefs #110.",
"is_bot": false,
"headline": "docs: clarify generate_unnamed_unlocalized_routes behavior (#357)",
"author_name": "Justyna Wojtczak",
"author_login": "justi",
"committed_at": "2026-05-14T15:23:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "453dc02dd92e31c50de1cacc1176cabe5bba67d1",
"body": "Ref: thoughtbot/appraisal#204",
"is_bot": false,
"headline": "Update to appraisal2 (#356)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-04-29T09:55:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83e11f4bedba2d99ebea080ff26f8449f0d9777b",
"body": null,
"is_bot": false,
"headline": "Update version and changelog (#355)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-04-05T10:24:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72f73a6dee5bc7e6b2a5319ed703be8417e13513",
"body": "Combines two gsub calls into one using a regex pattern and hash\nreplacement for better performance and cleaner code.\n\n```\nComparison (IPS):\n one_gsub: 1783202.8 i/s\n two_gsubs: 1527340.9 i/s - 1.17x (± 0.00) slower\n\nComparison (Memory):\n one_gsub: 648 allocated\n two_gsubs: 976 allocated - 1.51x more\n```",
"is_bot": false,
"headline": "Use single gsub for host pattern matching (#354)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-04-05T10:14:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6aed41323e78ef6a14bccd734be3825a9b094801",
"body": "* release/16.0.0:\n Update version number",
"is_bot": false,
"headline": "Merge branch 'release/16.0.0'",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-03-18T19:28:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ae14279bbd5b8be73f9549216abde3f6997e1d6",
"body": null,
"is_bot": false,
"headline": "Update version number",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-03-18T19:26:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30703897b6699d9c126b27d8ae34ac6c49eb23f1",
"body": "* master:\n Drop Legacy Rails and Ruby versions (#353)\n Update RuboCop configuration (#352)\n Improve CI matrix (#351)\n Test against Rails 8.1 (#350)\n Update Qlty badge (#349)\n Exclude Rails 8.x files from Ruby 3.1 coverage (#348)\n Update version and changelog (#345)\n Add Rails 8.1 edge suppor\n[…]\nost locale detection (#337)\n Ensure `@localized` is always reset after yield (#334)\n Fix random spec failure (#336)\n Fix test by reloading routes after config reset (#332)\n Update changelog (#331)",
"is_bot": false,
"headline": "Merge branch 'master' into develop",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-03-18T19:24:21Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8afce51365560cdd64fd2010ac44eb40f58afd40",
"body": null,
"is_bot": false,
"headline": "Drop Legacy Rails and Ruby versions (#353)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-03-18T08:17:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36ca72a6c184f8942f69af437fcee0ca482c282d",
"body": "Ref: rubocop/rubocop#15005",
"is_bot": false,
"headline": "Update RuboCop configuration (#352)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-03-17T21:15:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "032e96f3fc99d35688e4567fea6e190e108f715b",
"body": "- Test against Ruby 4.0\n- Do not test Rails edge against Ruby 3.2\n- Do not test Ruby edge against Rails 7.x",
"is_bot": false,
"headline": "Improve CI matrix (#351)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2026-01-04T12:19:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4a45a7217674e58e104442aa26d14a05a26bae1",
"body": null,
"is_bot": false,
"headline": "Test against Rails 8.1 (#350)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-10-23T07:18:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8424684f7c70b687b7c45a4b5c8d20e7898264ed",
"body": null,
"is_bot": false,
"headline": "Update Qlty badge (#349)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-09-05T15:35:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f259c453b799fca1cf8a27492651038809aac71",
"body": null,
"is_bot": false,
"headline": "Exclude Rails 8.x files from Ruby 3.1 coverage (#348)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-08-02T11:32:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8d095302b8fd4c7136c6700f980f5898df8cb54",
"body": null,
"is_bot": false,
"headline": "Update version and changelog (#345)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-07-06T13:00:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d6285369d72b7d5c0f539e61ed7975f3d573372",
"body": "Fixes ArgumentError in add_route due to argument mismatch with\nRails 8.1.0.edge\n\nCloses #323",
"is_bot": false,
"headline": "Add Rails 8.1 edge support (#344)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-07-06T12:44:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a03e218c3715aa24d4a69dc35e84c92efe654546",
"body": null,
"is_bot": false,
"headline": "Fix rdoc task (#342)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-30T14:41:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75ea168b123e46fdfe5a9e28610451e71cf0e395",
"body": "[ci skip]",
"is_bot": false,
"headline": "Fix link in changelog (#341)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-15T15:43:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a86ea91a135fbd457ecf618d0a94fe938ea572c1",
"body": "Ref: #106",
"is_bot": false,
"headline": "Implement `locale_from_request` method (#340)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-15T15:40:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "344c0298b6ecf918cd19fe531682ee942ece368d",
"body": "Ref: heartcombo/devise#5567\n\nClose #106\n\n[ci skip]",
"is_bot": false,
"headline": "Document how to integrate Devise (#339)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-15T15:23:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08ad18db9e3d96a8cb76c80df0db3da9c3ed58e8",
"body": "- Use `find` instead of `each_with_object` for improved performance and\n readability\n- Reduce memory allocations and unnecessary object creation\n- Update changelog to reflect these improvements\n\n**Benchmarks (Ruby 3.4.3):**\n- Performance: 4.1x faster (265,707 vs 64,861 i/s)\n- Memory: 3.9x fewer allocations (1,962 vs 7,729)",
"is_bot": false,
"headline": "Optimize host locale detection (#337)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-15T07:25:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac24c714efd4a65a221d438ab386987608d3dda5",
"body": "Guarantee that `@localized` is set back to `false` even if an exception\noccurs during the block execution, preventing inconsistent state.\n\nFixes #333",
"is_bot": false,
"headline": "Ensure `@localized` is always reset after yield (#334)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-14T08:33:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "640895cbc16af73688755432d482882367860b5d",
"body": "Additionally, simplify configuration\n\nClose #335",
"is_bot": false,
"headline": "Fix random spec failure (#336)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-14T07:44:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eabe695b1c649e85085fa22ea9a5f01a13676630",
"body": "Since Rails 8.0, route loading timing changed, causing order-dependent\ntest failures when routes are dynamically changed between specs.\n\nBy calling `Rails.application.reload_routes!` we ensure routes are\nalways in sync with the current configuration, avoiding test pollution\nand fixing random failure\n[…]\nadded to the global `teardown_config` for performance\nreasons.\n\nAdditionally, remove setup and teardown config where config is not\nchanged\n\nFix #321\n\nRefs:\n- rails/rails@9f80efc791\n- rails/rails#52353",
"is_bot": false,
"headline": "Fix test by reloading routes after config reset (#332)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-13T15:13:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "06f7b63c64c207d014d682c82765d7b1a9e02036",
"body": null,
"is_bot": false,
"headline": "Update changelog (#331)",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-12T20:44:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1fbb1b1d463709cacee1300896fea2a448b5f5bb",
"body": "* master:\n Fix: allow locale parameters in route helpers regardless of host_locales (#329)\n Improve host locales documentation\n Update dependencies\n Fix RuboCop exclusions\n Test against Ruby 3.4\n Drop EOL Ruby support",
"is_bot": false,
"headline": "Merge branch 'master' into develop",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-12T14:01:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c026ee13cf136338bac21181f3ed0c0f8f2e8c0",
"body": "…les (#329)\n\nRoute helpers now respect locale parameters (e.g., posts_path(locale: \"en\")) without requiring host_locales configuration.",
"is_bot": false,
"headline": "Fix: allow locale parameters in route helpers regardless of host_loca…",
"author_name": "James St-Pierre",
"author_login": "jamesst20",
"committed_at": "2025-06-12T14:00:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "563870a8fe334238671e87e0649e84656ce52020",
"body": "…-doc\n\nImprove host locales documentation",
"is_bot": false,
"headline": "Merge pull request #330 from enriclluelles/chore/improve-host-locales…",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-11T22:25:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44330f2a096b956a3e5c5066d19294608f8fd54a",
"body": null,
"is_bot": false,
"headline": "Improve host locales documentation",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-06-11T22:23:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3ffbb85a9c58976e40d8e36915b1d0f07fe002a",
"body": "Update RuboCop",
"is_bot": false,
"headline": "Merge pull request #327 from enriclluelles/chore/update-dependencies",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-03-23T11:00:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db318a1b75b3140628321fe55c99c154ea1631c9",
"body": null,
"is_bot": false,
"headline": "Update dependencies",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-03-23T10:57:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b1b6d6b09412bf7cce708a936aab9a52cff70d6",
"body": "Fix RuboCop exclusions",
"is_bot": false,
"headline": "Merge pull request #325 from enriclluelles/chore/fix-rubocop-exclusions",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-01-26T12:44:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f6b9a8a0ea693b100014de56fc50023f18cf105d",
"body": "They do not inherit from base when `AllCops` rule is being configured,\nthis will speed up execution\n\nAlso fix legacy Rails gemfiles to address rails/rails#54260",
"is_bot": false,
"headline": "Fix RuboCop exclusions",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2025-01-26T12:40:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ca5a9713b1c3988c81fdc2af1cb1f858cf1a34a",
"body": "Test against Ruby 3.4",
"is_bot": false,
"headline": "Merge pull request #324 from enriclluelles/chore/test-ruby-34",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-12-25T09:16:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c77d1638b0bb4e0d83c564fabf0c7b742433560e",
"body": null,
"is_bot": false,
"headline": "Test against Ruby 3.4",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-12-25T09:12:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4fbb1577db69777e35ddb0ee77653767d5d3ea6",
"body": "Drop EOL Ruby support",
"is_bot": false,
"headline": "Merge pull request #322 from enriclluelles/feature/drop-eol-rubies",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-12-22T14:59:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e845a5df902b8b0b63d47b49a55500abb178b15b",
"body": null,
"is_bot": false,
"headline": "Drop EOL Ruby support",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-12-22T14:39:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5413594052b4787cc7d0190e411d95d56c0f1cf",
"body": "* master:\n Add Rails 8 compatibility\n Do not test Rails edge against Ruby < 3.2\n Prefer `require_relative` for internal requires\n Do not test Rails 7.0 against Ruby 3.4 dev\n Update coveralls action\n Fix Gemspec/AddRuntimeDependency offenses\n Test against Rails 7.2 beta\n Update version and changelog\n Allow Rails 8.0\n Fix \"Test is missing assertions\" warnings\n Test Rails Edge against Ruby 3.3\n Fix typos\n Update RuboCop config\n Require Ruby 3.1 for Rails edge\n Test against Ruby 3.3",
"is_bot": false,
"headline": "Merge branch 'master' into develop",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-11-08T08:39:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7342ebf6b18f4adb7a84d9c96a632986f9bff57",
"body": "Add Rails 8 compatibility",
"is_bot": false,
"headline": "Merge pull request #319 from enriclluelles/chore/rails8",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-11-08T08:39:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91c0e80ba008ce02414fdee1a2dedcef03ca8b27",
"body": "Remove upper constraint as per\nhttps://github.com/svenfuchs/rails-i18n/pull/1130#discussion_r1808623501",
"is_bot": false,
"headline": "Add Rails 8 compatibility",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-11-08T08:36:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b5476becc2a0d19c20783265b4c1fcfdaceb20b",
"body": "Do not test Rails edge against Ruby < 3.2",
"is_bot": false,
"headline": "Merge pull request #316 from enriclluelles/chore/fix-ci",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-09-27T14:04:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78ebe2704c59ca2471bd123099afd06f34145b0e",
"body": null,
"is_bot": false,
"headline": "Do not test Rails edge against Ruby < 3.2",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-09-27T13:59:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97bd1616dfd21e1e3a93ab14f994f24ae90d074e",
"body": "Prefer `require_relative` for internal requires",
"is_bot": false,
"headline": "Merge pull request #315 from enriclluelles/chore/prefer-require-relative",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-09-19T12:32:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b820af7b6b5882f1d6fa055419b38690117dc41c",
"body": "`require_relative` is preferred over `require` for files within the same\nproject because it uses paths relative to the current file, making code\nmore portable and less dependent on the load path.\n\nThis change updates internal requires to use `require_relative` for\nconsistency, performance, and improved portability.\n\nRefs:\n- rubocop/rubocop#8748",
"is_bot": false,
"headline": "Prefer `require_relative` for internal requires",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-09-19T12:24:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dfd313054b42c20d189420f2053021c905ba947",
"body": "…-ruby-34\n\nDo not test Rails 7.0 against Ruby 3.4 dev",
"is_bot": false,
"headline": "Merge pull request #313 from enriclluelles/chore/do-not-test-rails-70…",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-08-20T16:15:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c490bc300310a2508ace753d9d02a6a403ea3ba5",
"body": "Stop testing Rails 7.0 against ruby-head, as 7.0 will now only receive\nsecurity fixes.\nCompatibility with future Ruby versions will be managed in newer\nRails versions.\n\nRef: rails/rails#50546",
"is_bot": false,
"headline": "Do not test Rails 7.0 against Ruby 3.4 dev",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-08-20T16:09:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d50c5dfc6ec93cd89b6989dc8a67bf495c9841b3",
"body": null,
"is_bot": false,
"headline": "Update coveralls action",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-07-27T14:35:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e279bde0df87fda08ef29d2f969af1a2d3c10593",
"body": "Fix Gemspec/AddRuntimeDependency offenses",
"is_bot": false,
"headline": "Merge pull request #310 from enriclluelles/chore/fix-new-offenses",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-07-17T10:31:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74a34811ab27e4ea351df2324ca853c35bebf464",
"body": null,
"is_bot": false,
"headline": "Fix Gemspec/AddRuntimeDependency offenses",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-07-17T10:28:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf4ce86bd544a1195710db053226dd39fcd3760a",
"body": "Rails 7.2 supports Ruby >= 3.1\n\nRef: https://edgeguides.rubyonrails.org/7_2_release_notes.html",
"is_bot": false,
"headline": "Test against Rails 7.2 beta",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-06-08T15:13:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f6d4a135e1f69b1359d1781ed24c5364cf32391",
"body": null,
"is_bot": false,
"headline": "Update version and changelog",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-27T13:35:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44f8154af5c3fddcdeadc8227238e270f29b503f",
"body": "Allow Rails 8.0",
"is_bot": false,
"headline": "Merge pull request #307 from Skalar/rails-8-0",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-27T13:33:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3426d6790f1423f7a55208f09a42515e47bc0299",
"body": null,
"is_bot": false,
"headline": "Allow Rails 8.0",
"author_name": "Theodor Tonum",
"author_login": "theodorton",
"committed_at": "2024-05-27T13:31:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5eddc25c005ba6ab0e3aa4e2aeb3504b3797df3",
"body": "Fix \"Test is missing assertions\" warnings",
"is_bot": false,
"headline": "Merge pull request #309 from enriclluelles/chore/fix-tests",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-27T11:43:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66d1b20a6fd009a7a366cdd151dfecd6745fb2ee",
"body": "Rails Edge produced some warnings:\n\n- Test is missing assertions: `test_action_controller_gets_locale_setter`\n- Test is missing assertions: `test_action_controller_gets_locale_suffix_helper`\n- Test is missing assertions: `test_action_view_gets_locale_suffix_helper`\n\nThose tests never worked because the assertion was missing (they were\nreturning false) and broke at a certain point in time",
"is_bot": false,
"headline": "Fix \"Test is missing assertions\" warnings",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-27T11:41:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d4bbfe3b37b6c985f90f713cd019d96e902b106",
"body": "…by-33\n\nTest Rails Edge against Ruby 3.3",
"is_bot": false,
"headline": "Merge pull request #308 from enriclluelles/chore/test-edge-against-ru…",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-27T11:32:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e5df40368301d1d29836dc217f83aaa16de7c96",
"body": null,
"is_bot": false,
"headline": "Test Rails Edge against Ruby 3.3",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-27T11:22:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12860a6eab326c79b41f39d45dd46ae5838077d8",
"body": null,
"is_bot": false,
"headline": "Fix typos",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-05-03T17:28:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edbb1d71f620f1ef5910bafb5e2280ce5ef1ecf2",
"body": null,
"is_bot": false,
"headline": "Update RuboCop config",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-01-16T07:00:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "886e69d19ebc88f15b4a065fb62dffac97198330",
"body": "Require Ruby 3.1 for Rails edge",
"is_bot": false,
"headline": "Merge pull request #304 from enriclluelles/chore/improve-ci",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-01-01T10:47:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "867c691f662586ad9561eaf25b66cbb407ae585a",
"body": "Ref: rails/rails#50491",
"is_bot": false,
"headline": "Require Ruby 3.1 for Rails edge",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2024-01-01T10:43:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c65a45c43ee30ebc88b6293aec360d1a5eca83ab",
"body": "Test against Ruby 3.3",
"is_bot": false,
"headline": "Merge pull request #303 from enriclluelles/chore/test-against-ruby-33",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-27T08:19:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e495a7d62acc8be7bf907f53f18121c205abce4",
"body": null,
"is_bot": false,
"headline": "Test against Ruby 3.3",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-25T09:00:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f45440a5b92bba08abfcd319fa28deb123f5cba",
"body": "* hotfix/14.1.1:\n Update version and changelog",
"is_bot": false,
"headline": "Merge branch 'hotfix/14.1.1' into develop",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T14:01:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d876646e7c318d807f392bfea021aaf8fe6b904d",
"body": "* hotfix/14.1.1:\n Update version and changelog",
"is_bot": false,
"headline": "Merge branch 'hotfix/14.1.1'",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T14:01:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d25ce348803731a6cff0d7c8a7ce4ee263c79025",
"body": null,
"is_bot": false,
"headline": "Update version and changelog",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T14:00:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f9cdc8b148991039b7a5558ac0b8d74683f4d0c",
"body": "Memory leak in development mode",
"is_bot": false,
"headline": "Merge pull request #301 from chrisdebruin/fix-lazy-loading-dev",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T13:56:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c55d04586e9999f6cd02fb700bc61eb75bcfe5dc",
"body": null,
"is_bot": false,
"headline": "Only lazy load in test",
"author_name": "Chris de Bruin",
"author_login": "chrisdebruin",
"committed_at": "2023-12-19T13:53:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b16c3ece28730dd8b90a27c507bf1bc9c5f05f58",
"body": "Fix CI",
"is_bot": false,
"headline": "Merge pull request #302 from enriclluelles/chore/fix-ci",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T13:47:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "571b2d0f5700b16b9cfe5218537f63bcf77bb7bd",
"body": null,
"is_bot": false,
"headline": "Fix CI",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T13:45:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90d909c81f0687d365c90995ba3943162713cf7f",
"body": null,
"is_bot": false,
"headline": "Fix new RuboCop offence",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-12-19T13:43:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "960a80cb5bf5616687f9824399d4931dcc774ee7",
"body": null,
"is_bot": false,
"headline": "Use symbol conversion instead of `.to_sym`",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-11-17T16:47:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba446a06a09a6fd821488ec77cd6750890bfbc87",
"body": "…lity\n\nRails 7.1 compatibility",
"is_bot": false,
"headline": "Merge pull request #300 from enriclluelles/feature/rails-71-compatibi…",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-10-05T15:16:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fed1480a704eefd45f1caff9654d0428889b3d68",
"body": null,
"is_bot": false,
"headline": "Rails 7.1 compatibility",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-10-05T15:04:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7663476713a72c56700034f098c48c0666a9f7ae",
"body": "…actions/checkout-4\n\nBump actions/checkout from 3 to 4",
"is_bot": false,
"headline": "Merge pull request #298 from enriclluelles/dependabot/github_actions/…",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-05T07:56:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5692756493d57d3c43f168dcb246388a8fe88517",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump actions/checkout from 3 to 4",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2023-09-05T07:55:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dd966979d19aa2ee9d6bd65a13f21fdc1aa7a5e",
"body": "[ci skip]\n\nRef: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot",
"is_bot": false,
"headline": "Keep GitHub Actions updated with Dependabot",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-05T07:54:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4d33dfee2d4bbc91795fa22f52cd3cb48eaa8364",
"body": null,
"is_bot": false,
"headline": "Remove dependency constraints from development",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-05T07:53:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c7e0958f32eeaae8222b0f4191821aabe70a4ebe",
"body": "Remove unneeded railtie",
"is_bot": false,
"headline": "Merge pull request #297 from enriclluelles/bugfix/296-eager-load",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-03T17:45:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "301611a2f11bb882164485940abb31f91107de1c",
"body": "While adding the new initializer generator, an unneeded railtie was\nincluded by mistake\n\nThis commit removes the railtie\n\nFix #296",
"is_bot": false,
"headline": "Remove unneeded railtie",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-03T17:43:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b1812cc7171556b5512176abfe2a75a1eb53b00",
"body": "[ci skip]",
"is_bot": false,
"headline": "Fix Readme and contributing",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-03T08:18:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0c240bf46dba52e45403ed9d7edd775349ee013",
"body": "[ci skip]",
"is_bot": false,
"headline": "Update changelog",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-02T14:14:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cde687dce967e946f7d1a8d02dbf915b63fd1ad",
"body": "Updates",
"is_bot": false,
"headline": "Merge pull request #295 from enriclluelles/updates",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-02T13:20:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6df1f7accb877ba53ba95072bcd51779b7c2c0e9",
"body": "Ref: https://github.com/enriclluelles/route_translator/pull/285",
"is_bot": false,
"headline": "Remove slash separator option",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-02T13:18:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b4f4f250b49b6b0989569946c648b4570292818",
"body": null,
"is_bot": false,
"headline": "Drop support for legacy Ruby and Rails",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-09-02T13:18:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05e8b153650a432f97944a5700965f65ae9acb16",
"body": "Use new issue template",
"is_bot": false,
"headline": "Merge pull request #294 from enriclluelles/chore/use-issue-template",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T13:26:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d19c5531ee561d7efcf1cf0fb4dd5225b9d69d39",
"body": "[ci skip]",
"is_bot": false,
"headline": "Use new issue template",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T13:25:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7cb686e99380b5546a253b3fb6e4d0bf9d726543",
"body": "Unit test deprecator",
"is_bot": false,
"headline": "Merge pull request #293 from enriclluelles/chore/improve-coverage",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T10:16:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e37a5f502c48821aa3761d362332e03f9875e949",
"body": null,
"is_bot": false,
"headline": "Unit test deprecator",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T10:05:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a91f3150803a6163b4d01f50865690b6d2cce05b",
"body": "Add initializer generator",
"is_bot": false,
"headline": "Merge pull request #292 from enriclluelles/feature/add-initializer",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T09:51:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e9d4935e4f0a29fa9e63877ebe18461476a887d",
"body": null,
"is_bot": false,
"headline": "Add initializer generator",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T09:47:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61fab6d44547ae6fa5eeaa157c379a898e9d8b70",
"body": "…n-tests\n\nSilence deprecations in tests",
"is_bot": false,
"headline": "Merge pull request #291 from enriclluelles/chore/silence-deprecator-i…",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T09:22:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "babc1eb75be88731b16d8b2fec0f998906977023",
"body": null,
"is_bot": false,
"headline": "Silence deprecations in tests",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-08-05T09:21:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8346fd2d5955f4d5a3cc2f988914a2ae15a43ba2",
"body": "* release/13.2.1:",
"is_bot": false,
"headline": "Merge branch 'release/13.2.1'",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-07-28T17:00:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb1da9fed70bdfa2c5e3ff877f815e22b75bd417",
"body": "* master:\n Update version and changelog\n Improve dummy app configuration",
"is_bot": false,
"headline": "Merge branch 'master' into develop",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-07-28T16:59:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4006d7f0ccaf5074b85f7b7ceff063f170596e3c",
"body": "Chore/fix deprecations",
"is_bot": false,
"headline": "Merge pull request #290 from enriclluelles/chore/fix-deprecations",
"author_name": "Geremia Taglialatela",
"author_login": "tagliala",
"committed_at": "2023-07-28T16:58:36Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 10,
"commits_last_year": 15,
"latest_release_at": "2026-05-16T13:43:59Z",
"latest_release_tag": "v16.0.1",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 10,
"days_since_latest_release": 73,
"mean_days_between_releases": 109.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 57,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "route_translator",
"exists": true,
"license": "MIT",
"keywords": [],
"ecosystem": "rubygems",
"matches_repo": true,
"registry_url": "https://rubygems.org/gems/route_translator",
"is_deprecated": false,
"latest_version": "16.1.0",
"repository_url": "https://github.com/enriclluelles/route_translator",
"versions_count": 83,
"total_downloads": 3937905,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2012-07-10T22:24:09.599000Z",
"latest_published_at": "2026-07-28T13:10:46.652000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 145,
"stars": 947,
"watchers": 15,
"fork_history": {
"days": [
{
"date": "2012-08-22",
"count": 1
},
{
"date": "2012-08-29",
"count": 1
},
{
"date": "2012-09-10",
"count": 1
},
{
"date": "2012-09-27",
"count": 1
},
{
"date": "2013-01-15",
"count": 1
},
{
"date": "2013-01-31",
"count": 1
},
{
"date": "2013-02-05",
"count": 1
},
{
"date": "2013-02-14",
"count": 1
},
{
"date": "2013-04-06",
"count": 1
},
{
"date": "2013-04-09",
"count": 1
},
{
"date": "2013-06-28",
"count": 1
},
{
"date": "2013-07-13",
"count": 1
},
{
"date": "2013-07-25",
"count": 1
},
{
"date": "2013-07-28",
"count": 1
},
{
"date": "2013-07-30",
"count": 1
},
{
"date": "2013-10-08",
"count": 1
},
{
"date": "2013-10-10",
"count": 1
},
{
"date": "2013-10-30",
"count": 1
},
{
"date": "2013-10-31",
"count": 1
},
{
"date": "2013-11-02",
"count": 1
},
{
"date": "2013-11-11",
"count": 1
},
{
"date": "2013-12-04",
"count": 1
},
{
"date": "2013-12-06",
"count": 1
},
{
"date": "2013-12-27",
"count": 1
},
{
"date": "2014-01-02",
"count": 1
},
{
"date": "2014-01-09",
"count": 1
},
{
"date": "2014-01-15",
"count": 1
},
{
"date": "2014-01-21",
"count": 1
},
{
"date": "2014-02-07",
"count": 1
},
{
"date": "2014-02-08",
"count": 1
},
{
"date": "2014-02-25",
"count": 1
},
{
"date": "2014-03-02",
"count": 1
},
{
"date": "2014-03-11",
"count": 1
},
{
"date": "2014-03-31",
"count": 1
},
{
"date": "2014-05-04",
"count": 1
},
{
"date": "2014-05-27",
"count": 1
},
{
"date": "2014-06-13",
"count": 1
},
{
"date": "2014-06-18",
"count": 1
},
{
"date": "2014-06-22",
"count": 2
},
{
"date": "2014-07-20",
"count": 1
},
{
"date": "2014-07-24",
"count": 1
},
{
"date": "2014-09-10",
"count": 1
},
{
"date": "2014-09-15",
"count": 1
},
{
"date": "2014-10-23",
"count": 1
},
{
"date": "2014-10-26",
"count": 1
},
{
"date": "2014-11-24",
"count": 1
},
{
"date": "2014-11-26",
"count": 1
},
{
"date": "2014-12-03",
"count": 1
},
{
"date": "2015-01-16",
"count": 1
},
{
"date": "2015-02-12",
"count": 1
},
{
"date": "2015-03-17",
"count": 1
},
{
"date": "2015-03-21",
"count": 1
},
{
"date": "2015-04-14",
"count": 1
},
{
"date": "2015-04-16",
"count": 1
},
{
"date": "2015-04-18",
"count": 1
},
{
"date": "2015-07-17",
"count": 1
},
{
"date": "2015-08-04",
"count": 1
},
{
"date": "2015-08-06",
"count": 1
},
{
"date": "2015-08-24",
"count": 1
},
{
"date": "2015-08-25",
"count": 1
},
{
"date": "2015-08-28",
"count": 1
},
{
"date": "2015-09-08",
"count": 1
},
{
"date": "2015-09-13",
"count": 1
},
{
"date": "2015-10-14",
"count": 1
},
{
"date": "2015-10-20",
"count": 1
},
{
"date": "2015-11-05",
"count": 1
},
{
"date": "2015-11-18",
"count": 1
},
{
"date": "2015-12-07",
"count": 2
},
{
"date": "2016-01-17",
"count": 1
},
{
"date": "2016-02-04",
"count": 1
},
{
"date": "2016-02-05",
"count": 1
},
{
"date": "2016-02-08",
"count": 1
},
{
"date": "2016-02-29",
"count": 1
},
{
"date": "2016-04-06",
"count": 1
},
{
"date": "2016-04-22",
"count": 1
},
{
"date": "2016-05-02",
"count": 1
},
{
"date": "2016-05-24",
"count": 1
},
{
"date": "2016-06-03",
"count": 1
},
{
"date": "2016-07-01",
"count": 1
},
{
"date": "2016-07-09",
"count": 1
},
{
"date": "2016-07-26",
"count": 2
},
{
"date": "2016-08-11",
"count": 1
},
{
"date": "2016-08-23",
"count": 1
},
{
"date": "2016-10-02",
"count": 2
},
{
"date": "2016-10-14",
"count": 1
},
{
"date": "2016-10-26",
"count": 1
},
{
"date": "2016-10-31",
"count": 1
},
{
"date": "2016-12-14",
"count": 1
},
{
"date": "2017-02-16",
"count": 1
},
{
"date": "2017-03-01",
"count": 1
},
{
"date": "2017-07-21",
"count": 1
},
{
"date": "2017-11-22",
"count": 1
},
{
"date": "2017-12-11",
"count": 1
},
{
"date": "2018-01-12",
"count": 1
},
{
"date": "2018-02-06",
"count": 1
},
{
"date": "2018-03-21",
"count": 1
},
{
"date": "2018-11-30",
"count": 1
},
{
"date": "2019-01-18",
"count": 1
},
{
"date": "2019-03-14",
"count": 1
},
{
"date": "2019-04-25",
"count": 1
},
{
"date": "2019-07-10",
"count": 1
},
{
"date": "2019-07-15",
"count": 1
},
{
"date": "2019-12-12",
"count": 1
},
{
"date": "2019-12-13",
"count": 1
},
{
"date": "2020-03-02",
"count": 1
},
{
"date": "2020-04-29",
"count": 1
},
{
"date": "2020-05-11",
"count": 1
},
{
"date": "2020-05-18",
"count": 1
},
{
"date": "2020-08-15",
"count": 1
},
{
"date": "2020-08-21",
"count": 1
},
{
"date": "2020-08-27",
"count": 1
},
{
"date": "2020-09-23",
"count": 1
},
{
"date": "2020-11-03",
"count": 1
},
{
"date": "2020-12-14",
"count": 1
},
{
"date": "2021-01-18",
"count": 1
},
{
"date": "2021-01-21",
"count": 2
},
{
"date": "2021-02-06",
"count": 1
},
{
"date": "2021-03-02",
"count": 1
},
{
"date": "2021-05-31",
"count": 1
},
{
"date": "2021-08-15",
"count": 1
},
{
"date": "2021-08-27",
"count": 1
},
{
"date": "2021-09-20",
"count": 1
},
{
"date": "2021-10-27",
"count": 1
},
{
"date": "2021-11-18",
"count": 1
},
{
"date": "2021-12-11",
"count": 1
},
{
"date": "2022-03-15",
"count": 1
},
{
"date": "2022-08-20",
"count": 1
},
{
"date": "2022-11-09",
"count": 1
},
{
"date": "2023-01-27",
"count": 1
},
{
"date": "2023-02-11",
"count": 1
},
{
"date": "2023-12-19",
"count": 1
},
{
"date": "2024-05-27",
"count": 1
},
{
"date": "2025-06-09",
"count": 1
},
{
"date": "2025-07-11",
"count": 1
},
{
"date": "2025-08-29",
"count": 1
},
{
"date": "2026-05-14",
"count": 1
},
{
"date": "2026-07-28",
"count": 1
}
],
"complete": true,
"collected": 142,
"total_forks": 145
},
"star_history": null,
"open_issues_and_prs": 8
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 24104,
"source_files_sampled": 51,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Gemfile"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 14,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [
{
"name": "appraisal2",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "byebug",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "minitest",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rails",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rake",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-minitest",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-packaging",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-performance",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-rails",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-rake",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "simplecov",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "appraisal2",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "byebug",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "minitest",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rails",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rake",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop-minitest",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop-packaging",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop-performance",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop-rails",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop-rake",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "simplecov",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "actionpack",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "activesupport",
"direct": false,
"version": null,
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 14,
"direct_count": 12,
"indirect_count": 2
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 157,
"open_issues": 8,
"closed_ratio": 0.953,
"closed_issues": 162,
"closed_unmerged_prs": 35
},
"bus_factor": 1,
"bot_contributors": 2,
"top_contributors": [
{
"type": "User",
"login": "tagliala",
"commits": 729,
"avatar_url": "https://avatars.githubusercontent.com/u/556268?v=4"
},
{
"type": "User",
"login": "enriclluelles",
"commits": 161,
"avatar_url": "https://avatars.githubusercontent.com/u/79768?v=4"
},
{
"type": "User",
"login": "raul",
"commits": 48,
"avatar_url": "https://avatars.githubusercontent.com/u/2270?v=4"
},
{
"type": "User",
"login": "gi-lunaweb",
"commits": 42,
"avatar_url": "https://avatars.githubusercontent.com/u/218932?v=4"
},
{
"type": "User",
"login": "cice",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/143797?v=4"
},
{
"type": "User",
"login": "gonzoyumo",
"commits": 8,
"avatar_url": "https://avatars.githubusercontent.com/u/52993?v=4"
},
{
"type": "User",
"login": "aimerickmorel",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/1017165?v=4"
},
{
"type": "User",
"login": "mohamagdy",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/1228432?v=4"
},
{
"type": "User",
"login": "jacob-carlborg",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/306980?v=4"
},
{
"type": "User",
"login": "omnikron",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/881298?v=4"
}
],
"contributors_sampled": 48,
"top_contributor_share": 0.681
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"rubocop.yml",
"ruby.yml"
],
"has_docs_dir": false,
"linter_configs": [
".rubocop.yml"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 9,
"reason": "24 out of 26 merged PRs checked by a CI test -- score normalized to 9",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 1,
"reason": "Found 3/30 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 15 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 5,
"reason": "6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "ab5601cc5c779316052c6c8f2997d665c0d2f050",
"ran_at": "2026-07-28T15:10:52Z",
"aggregate_score": 5.6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-28T13:08:04Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-28T13:07:44Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 110,
"created_at": "2015-08-13T20:55:52Z",
"last_comment_at": "2026-05-14T13:20:48Z",
"last_comment_author": "justi"
},
{
"number": 140,
"created_at": "2016-05-07T17:31:18Z",
"last_comment_at": "2019-07-19T16:17:25Z",
"last_comment_author": "monteverdetico"
},
{
"number": 166,
"created_at": "2017-05-12T07:36:51Z",
"last_comment_at": "2021-01-20T17:47:55Z",
"last_comment_author": "aiomaster"
},
{
"number": 173,
"created_at": "2017-09-27T09:27:50Z",
"last_comment_at": "2017-09-29T08:39:12Z",
"last_comment_author": "wafendy"
},
{
"number": 178,
"created_at": "2017-12-03T15:04:49Z",
"last_comment_at": "2021-01-16T12:32:58Z",
"last_comment_author": "tagliala"
},
{
"number": 224,
"created_at": "2020-08-12T14:52:09Z",
"last_comment_at": "2020-08-14T12:05:31Z",
"last_comment_author": "tagliala"
},
{
"number": 273,
"created_at": "2022-11-16T13:10:32Z",
"last_comment_at": "2022-12-26T10:58:15Z",
"last_comment_author": "tagliala"
},
{
"number": 346,
"created_at": "2025-07-06T12:49:20Z",
"last_comment_at": "2026-06-03T11:00:05Z",
"last_comment_author": "tagliala"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/enriclluelles/route_translator",
"host": "github.com",
"name": "route_translator",
"owner": "enriclluelles"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"security": 56,
"vitality": 72,
"community": 75,
"governance": 67,
"engineering": 69
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 72,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"commits_last_year": 15,
"human_commit_share": 0.99,
"days_since_last_push": 0,
"active_weeks_last_year": 10
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "10/52 weeks with commits",
"points": 6.9,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 10
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "15 commits in the last year",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 15
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5",
"points": 5,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 92,
"inputs": {
"releases_count": 10,
"latest_release_tag": "v16.0.1",
"releases_from_tags": false,
"days_since_latest_release": 73,
"mean_days_between_releases": 109.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "10 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 10
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 73 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 73
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~109.6 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 109.6
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 75,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "good",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"forks": 145,
"stars": 947,
"watchers": 15,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "947 stars",
"points": 48.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 947
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "145 forks",
"points": 18,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 145
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "15 watchers",
"points": 6.4,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 15
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "excellent",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 86,
"inputs": {
"packages": [
"route_translator"
],
"dependents": null,
"ecosystems": "rubygems",
"total_downloads": 3937905,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "3,937,905 downloads all-time across rubygems",
"points": 68.5,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 3937905,
"ecosystems": "rubygems"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 67,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 48,
"top_contributor_share": 0.681
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 68% of commits",
"points": 7.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 68
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "48 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 48
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 15 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"merged_prs": 157,
"open_issues": 8,
"closed_issues": 162,
"issue_closed_ratio": 0.953,
"closed_unmerged_prs": 35
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "95% of issues closed",
"points": 44.6,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 95
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "157/192 decided PRs merged",
"points": 31.3,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 157,
"decided": 192
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/30 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 62,
"inputs": {
"followers": 98,
"owner_type": "User",
"is_verified": null,
"owner_login": "enriclluelles",
"public_repos": 72,
"account_age_days": 6297
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "98 followers of enriclluelles",
"points": 14.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 98,
"login": "enriclluelles"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "72 public repos, account ~17 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 72
}
},
{
"code": "account_age_years",
"params": {
"years": 17
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"route_translator"
],
"ecosystems": "rubygems",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on rubygems",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "rubygems"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "83 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 83
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 69,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": ".rubocop.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".rubocop.yml"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "24 out of 26 merged PRs checked by a CI test -- score normalized to 9",
"points": 18,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 56,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 56,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 5.6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "24 out of 26 merged PRs checked by a CI test -- score normalized to 9",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 3/30 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 15 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5",
"points": 3.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 19
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "at_risk",
"name": "AI Readiness",
"value": 43,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 34,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.646,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "64 of 99 human commits state their intent (structured subject or explanatory body)",
"points": 34.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 64,
"sampled": 99
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.02,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.01
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": ".rubocop.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".rubocop.yml"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "2 of the last 100 commits agent-authored or agent-credited",
"points": 4,
"status": "partial",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 2,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "1 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 1,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Ruby",
"largest_source_bytes": 24104,
"source_files_sampled": 51,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Ruby without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Ruby"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/51 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 51,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-28T15:11:22.646561Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/e/enriclluelles/route_translator.svg",
"full_name": "enriclluelles/route_translator",
"license_state": "standard",
"license_spdx": "MIT"
}