Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [
"activerecord",
"ruby",
"state-machine"
],
"is_fork": false,
"size_kb": 199,
"has_wiki": false,
"homepage": "https://github.com/state-machines/state_machines-activerecord",
"languages": {
"Ruby": 147983
},
"pushed_at": "2026-06-12T20:34:29Z",
"created_at": "2015-01-06T15:29:46Z",
"owner_type": "Organization",
"updated_at": "2026-07-17T16:22:57Z",
"description": "StateMachines Active Record Integration",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Ruby",
"significant_languages": [
"Ruby"
]
},
"owner": {
"blog": null,
"name": "State Machines",
"type": "Organization",
"login": "state-machines",
"company": null,
"location": "Antarctica",
"followers": 22,
"avatar_url": "https://avatars.githubusercontent.com/u/7613709?v=4",
"created_at": "2014-05-17T21:21:35Z",
"is_verified": null,
"public_repos": 16,
"account_age_days": 4454
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "state_machines-activerecord/v0.200.0",
"kind": "other",
"published_at": "2026-06-12T19:12:21Z"
},
{
"tag": "state_machines-activerecord/v0.103.0",
"kind": "other",
"published_at": "2026-03-23T15:50:23Z"
},
{
"tag": "state_machines-activerecord/v0.102.0",
"kind": "other",
"published_at": "2026-03-22T23:45:53Z"
},
{
"tag": "state_machines-activerecord/v0.100.0",
"kind": "other",
"published_at": "2025-07-17T02:45:40Z"
},
{
"tag": "state_machines-activerecord/v0.40.0",
"kind": "other",
"published_at": "2025-06-30T17:30:25Z"
},
{
"tag": "state_machines-activerecord/v0.31.0",
"kind": "other",
"published_at": "2025-06-30T05:27:57Z"
},
{
"tag": "state_machines-activerecord/v0.10.0",
"kind": "other",
"published_at": "2025-06-12T22:55:32Z"
}
],
"recent_commits": [
{
"oid": "89db405eb9301c8c1f714711c4bee6acba65b878",
"body": "Covers after_transition callbacks firing within the same save\nwhen a before_transition sets another machine's *_event attribute.",
"is_bot": false,
"headline": "test: add regression test for nested attribute event transitions (#91)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-06-12T20:33:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0e4d2911598de3423029b68e7fd02e25a27dbd3",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.200.0 (#135)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-06-12T19:12:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b717068531bc184b801549e2b959a8a1248b0b89",
"body": "Adds an :after_commit option to after_transition in the ActiveRecord\nintegration. Callbacks defined with it are deferred until the database\ntransaction wrapping the transition is committed, using Rails'\ncurrent_transaction.after_commit API (available since 7.2, the gem's\nminimum supported version):\n\n[…]\nruns immediately\n- On rollback, it is discarded\n\nThis closes the race where a job enqueued in a regular after_transition\nexecutes before the record is committed and GlobalID lookup fails.\n\nCloses #112",
"is_bot": false,
"headline": "feat: support after_commit option on after_transition callbacks (#138)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-06-12T19:11:20Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b839a990c3c554d3b634b935412597292823fba2",
"body": null,
"is_bot": false,
"headline": "fix: handle auto-indexed integer column defaults (#137)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-06-12T10:32:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e903f7b1bba3cb8ce563576f19171c8a9170992a",
"body": "…a subclass (#136)\n\nSubclasses extending an inherited machine got the parent's attribute type,\nwhich references the parent's state collection, so subclass-added states\nsilently serialized to 0. Re-registering on owner_class= keeps the type\nbound to the cloned collection.",
"is_bot": false,
"headline": "fix: re-register integer attribute type when a machine is cloned for …",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-06-12T08:10:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f0596bc6a72dcd83ff46948a80812f9e60604ea",
"body": "Fixes #132\n\n---------\n\nCo-authored-by: Abdelkader Boudih <terminale@gmail.com>",
"is_bot": false,
"headline": "fix: add opt-out for integer state attribute conversion",
"author_name": "Tailor Fontela",
"author_login": "taylorrf",
"committed_at": "2026-06-11T23:59:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5aab8838cd04e5c741244f938be0faedd4eb1d13",
"body": "feat: remove redundant run_scope override",
"is_bot": false,
"headline": "Merge pull request #134 from state-machines/chore/cleanup",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-06-11T22:50:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8197a6f3cce8aeaacfe34e35ae2fe0757f48c71",
"body": "The core gem's Machine::Utilities#run_scope is identical and the only\nimplementation ever invoked. Requires state_machines-activemodel >= 0.200.0.\n\nRelease-As: 0.200.0",
"is_bot": false,
"headline": "feat: remove redundant run_scope override",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-06-11T22:37:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da688989c234c64cffc66320c14e662104fd2a09",
"body": "chore(master): release state_machines-activerecord 0.103.0",
"is_bot": false,
"headline": "chore(master): release state_machines-activerecord 0.103.0",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-03-23T15:50:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a6319e14abaf54ff7e87e7939e42fb8e35f4da0",
"body": null,
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.103.0",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-03-23T15:40:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "452edec8d23e7f9d5546e95df8c2b3ab237c5b70",
"body": "Registers a custom ActiveRecord attribute type (StateMachines::Type::Integer)\nwhen a machine attribute is backed by an integer column. The type transparently\nconverts between stored integers and state name strings so that:\n - object.status returns \"pending\" instead of raw 0\n - object.status = :de\n[…]\nia a read() override that returns the raw integer for machine\n internals while preserving the human-friendly string for application code\n\nAdd regression test covering explicit integer value states.",
"is_bot": false,
"headline": "feat: support integer columns for state machine attributes",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-03-23T15:39:50Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "675b0520804e0583c123a6063ef852267ad34a20",
"body": "…-master--components--state_machines-activerecord\n\nchore(master): release state_machines-activerecord 0.102.0",
"is_bot": false,
"headline": "Merge pull request #129 from state-machines/release-please--branches-…",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-03-22T23:45:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89fac806767d6a107ecf054c0d842426d56a52f8",
"body": null,
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.102.0",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2026-03-22T23:43:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "215ccb271e63eeaa46de640b3eb001dc69747d8e",
"body": "Release-As: 0.102.0",
"is_bot": false,
"headline": "fix: remove bump-patch-for-minor-pre-major",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-03-22T23:43:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f99c90e9f4f6ef158b0e195b930d9eb3167bb66",
"body": null,
"is_bot": false,
"headline": "fix: bump state_machines-activemodel to >= 0.102.0",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-03-22T23:31:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6efa970badf3ae2685042f1a4d752192aa2f74b6",
"body": "Integer-backed state machine attributes now transparently map between\nstate names (in-memory) and integer indices (stored in DB).\n\n- tx.status returns 'pending' instead of raw 0\n- tx.status = :declined correctly stores the integer value\n- .with_status(:pending) scopes continue to work\n- Conflicting attribute default check still compares raw integers",
"is_bot": false,
"headline": "feat: transparent integer column support via custom AR attribute type",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-03-22T23:31:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3cdcef325a1d02955b3a6d50f0e64465fae14931",
"body": "chore: test Ruby 3.4 and 4.0",
"is_bot": false,
"headline": "Merge pull request #130 from state-machines/ci-ruby-4.0",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-01-06T12:21:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c6c6c5a06c6f255eb71beedddcd3bcb3a13c4a8",
"body": null,
"is_bot": false,
"headline": "chore: lock minitest to 5.27.0",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-01-06T12:18:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56d6dc17c507782e7ffb952dc55dd07ceb5214ba",
"body": null,
"is_bot": false,
"headline": "chore: test Ruby 3.4 and 4.0",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2026-01-06T12:03:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8794d30cd0abee26b9b0f6d4eabd5cb95f409c59",
"body": "…(#128)",
"is_bot": false,
"headline": "fix: bump state_machines-activemodel to 0.101.0 and test Rails 8.1.0 …",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-11-03T06:10:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad07dc11c288adc8208188ee4fffe2c9f0521a57",
"body": "…2 to 8.1.0.beta (#126)\n\n- Replace Rails edge testing with Rails 8.1.0.beta\n- Remove rbx platform support (only test on mri, jruby, truffleruby)\n- Update CI workflow to test against 7.2, 8.0, and 8.1 gemfiles\n- Remove unnecessary matrix exclusions from GitHub Actions\n- Regenerate Appraisal gemfiles for new configuration",
"is_bot": false,
"headline": "Update Rails testing to match activemodel: drop edge testing, test 7.…",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-09-10T13:01:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7a082d9acdbffcabbfad0174d20d0ecd282167e",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.100.0 (#125)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-07-17T10:38:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08c765029c02cd9c83768172279ee8a78b641f7e",
"body": "…#122)\n\nrelease-as: 0.100.0",
"is_bot": false,
"headline": "feat: Add Rails enum integration with automatic conflict resolution (…",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-07-17T10:22:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b92d53eda99b2a03f4467ae0dbc4f9080ea393f",
"body": null,
"is_bot": false,
"headline": "fix build",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-07-17T06:35:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93a14e20e443b2ce715f41dd5ec4ec30b64062ee",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.100.0 (#124)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-07-17T03:17:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4c25283c833559d815249f14f54d14e50be375d",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.100.0 (#124)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-07-17T02:45:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "507bdf0064a9e2fdd97f8915d40a7c961b6e884b",
"body": "release-as: 0.100.0",
"is_bot": false,
"headline": "fix: prevent fiber deadlocks with Ruby 3.4+ and Rails 8 (#123)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-07-17T02:44:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21ee399518986d6cf4ea34c6f6b0165621b1e676",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.40.0 (#121)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-06-30T17:30:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3df786d27ff58937c705d9a5ee54ba6c2e26394",
"body": "release-as: 0.40.0\nFixes #57",
"is_bot": false,
"headline": "feat: Drop Rails 7.1 support and require Rails 7.2+ (#120)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-06-30T16:20:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ffd42ab4e3d79d847b672daf89cc3c7ab43a2fb",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.31.0 (#118)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-06-30T05:27:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f0ed198cf1d07dbcebd34223da99e18dfaf536f",
"body": "* Map attribute aliases to column names when initializing\n\n* Fix implementation to map aliased to original attribute names",
"is_bot": false,
"headline": "Map attribute aliases to column names when initializing (#95)",
"author_name": "Joel Van Horn",
"author_login": "joelvh",
"committed_at": "2025-06-30T04:04:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5eef30895e75840d0817166f1c36969f472ecaa0",
"body": "…-pr98\n\nfeat: Add transparent scope support (cherry-pick PR #98)",
"is_bot": false,
"headline": "Merge pull request #119 from state-machines/feature/transparent-scope…",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-06-29T23:14:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ddd558175b088a61e81094896ef6c8e270d1dd0",
"body": null,
"is_bot": false,
"headline": "docs: Document transparent scope behavior with nil values",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-06-29T23:12:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8cda845d9a712dcca603e73cf935b8ccca31177",
"body": null,
"is_bot": false,
"headline": "add test for transparent scopes",
"author_name": "Simon Claessens",
"author_login": "gagalago",
"committed_at": "2025-06-29T23:12:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25009b3af3b41341d9dd8e5406faa34f8bb522b4",
"body": "allow to chain scopes and scopes are transparent if no values are given to it.\n\nfix https://github.com/state-machines/state_machines-activerecord/issues/66",
"is_bot": false,
"headline": "transparent scope",
"author_name": "Simon Claessens",
"author_login": "gagalago",
"committed_at": "2025-06-29T23:12:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b739d4b69ebbef581ee6086457267fcf86bd922",
"body": "- Fix I18n lambdas to accept arguments with ->(*) syntax\n - Update string formatting to use format() instead of % operator\n - Apply RuboCop style corrections:\n - Convert hash rockets to new hash syntax\n - Use symbol arrays (%i) for platform lists\n - Add frozen string literal comments\n - Fix indentation and spacing issues\n - Use block argument forwarding (&)\n - Remove GitHub gem dependencies from Gemfile\nrelease-as: 0.31.0",
"is_bot": false,
"headline": "fix: update I18n lambdas and apply RuboCop corrections (#117)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-06-29T22:39:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84337f7718c0b5d52aedbb9063d573b1bb03bde6",
"body": "Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(master): release state_machines-activerecord 0.10.0 (#116)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-06-12T22:55:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "474cdd406a98fd3004f00b4ebd677ea882ea4182",
"body": "release-as: 0.10.0",
"is_bot": false,
"headline": "fix: readme fix and release",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-06-12T22:54:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9f89a49507bc6bc5de125c4ddff54d0cc43f362",
"body": "releasei-as: 0.10.0",
"is_bot": false,
"headline": "fix: prepare to release 0.10.0 (#115)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-06-12T22:49:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58a29a5dba93496e48ffda34563d2ac59f446bc0",
"body": "chore: add frozen_string_literal\nfeat: drop support for legacy version",
"is_bot": false,
"headline": "chore: update ActiveRecord gemfiles and add Ruby 3.4 support (#114)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2025-03-20T17:48:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b5ee569b9a041bdafcbad5c646ee501a8c3bd83",
"body": null,
"is_bot": false,
"headline": "chore: test ruby 3.3 (#110)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2024-01-22T19:20:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b59cf32869e608f7fc5765a5ead487e1922e82b0",
"body": null,
"is_bot": false,
"headline": "release 0.9.0 (#108)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2023-06-30T17:19:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a90abb2bdb8aa811b3c7a8a3b181e40772b76c61",
"body": null,
"is_bot": false,
"headline": "fix testing matrix (#107)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2023-06-27T22:25:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33a5d172585fcc6dd22f009e3fe7377aea1fa642",
"body": "Run CI on Ruby 3.1 and 3.2",
"is_bot": false,
"headline": "Merge pull request #106 from mbobin/master",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2023-06-06T19:55:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1c1aa69ea27530bd3f6b295df8ec46764d16e85",
"body": null,
"is_bot": false,
"headline": "Add Rails 7 appraisal",
"author_name": "Marius Bobin",
"author_login": null,
"committed_at": "2023-05-05T14:21:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4c4a2a4707a53f1cc708e68784011877eb904c0",
"body": null,
"is_bot": false,
"headline": "Fix Rails edge tests",
"author_name": "Marius Bobin",
"author_login": null,
"committed_at": "2023-05-05T14:21:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b8eeac13070a61e7dfac82893ccf208651cdbc70",
"body": null,
"is_bot": false,
"headline": "Run CI on Ruby 3.1 and 3.2",
"author_name": "Marius Bobin",
"author_login": "mbobin",
"committed_at": "2023-05-05T13:14:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b34ac57329f52fa259ace88d2f67bfeb5135f18",
"body": "… (#100)",
"is_bot": false,
"headline": " #101 docs(models): examples show models inheriting ApplicationRecord…",
"author_name": "Kaspar V",
"author_login": "casaper",
"committed_at": "2022-07-25T09:12:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "94662c61eeea4783b9d0b2899693c43610246900",
"body": "Remove Dead Code",
"is_bot": false,
"headline": "Merge pull request #99 from state-machines/DropDeadCode",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2021-04-20T23:04:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a11953f3a5e83c5f556b6753d8010857aef4c0f",
"body": null,
"is_bot": false,
"headline": "Remove Deadcode",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2021-04-18T06:29:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cbefdc2f966b96ac06f6e02d2bd735a76710c6ca",
"body": null,
"is_bot": false,
"headline": "Move Testing to github Action (#96)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2021-04-17T10:57:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08f03cd6da45370366faf1ba1c9caf2cf13618c6",
"body": null,
"is_bot": false,
"headline": "Update active_record_edge.gemfile",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2021-04-17T06:51:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29f34b92bbd3ebf1a78feaf6f352f2e936410273",
"body": "closes #89",
"is_bot": false,
"headline": "Prepare 0.8.0 (#92)",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2020-12-31T22:35:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "550fc0e1d26ba0e881623eeb64d56b2b7b8ca8ec",
"body": "* Test against Ruby 2.7 and fix warnings and drop ruby 2.2 as i18n gem now requires 2.3\r\n\r\nCo-authored-by: Jean Boussier <jean.boussier@gmail.com>",
"is_bot": false,
"headline": "Test against Ruby 2.7 and fix warnings (#88)",
"author_name": "Jean byroot Boussier",
"author_login": "casperisfine",
"committed_at": "2020-05-21T12:45:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "060e2ef582e5387fb7fd76a457550af04f7b3597",
"body": "CI: Remove unused setting",
"is_bot": false,
"headline": "Merge pull request #82 from olleolleolle/patch-1 [ci skip]",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2019-04-11T08:39:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "664d5b191594f9ba35df1d580aa9bfeff99e745a",
"body": " - Removes an old setting from Travis. See https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration",
"is_bot": false,
"headline": "CI: Remove unused setting",
"author_name": "Olle Jonsson",
"author_login": "olleolleolle",
"committed_at": "2019-04-11T07:14:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d60daadb35779a63a66cb5914910bec234ac923d",
"body": null,
"is_bot": false,
"headline": "Prepare 0.6.0",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-10T19:17:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "031d01b32ddd2ebd45900afed804f39a783f00cb",
"body": null,
"is_bot": false,
"headline": "Merge branch 'rm-fix-tests'",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-10T18:47:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4422e84873334d136bb7cbc118ba5fb64ad43b92",
"body": null,
"is_bot": false,
"headline": "Update the travis-ci config",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-09T23:44:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bf2feaadabb2a6e0978484fbd173e01302ecd5f",
"body": "See https://github.com/state-machines/state_machines-activemodel/commit/50d8fc0bddcbbd4e873536196862dd1ca3afea77",
"is_bot": false,
"headline": "Use ActiveSuport.on_load to set I18n load path",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-09T22:10:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "80586acf4e03b0dc2a930cc66fd1bc691bf983c9",
"body": null,
"is_bot": false,
"headline": "Don't change the arguments to splan if we don't need to",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-09T20:44:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91d1401bbfb9122e036c6aa3688f50a2a07137a5",
"body": "Match function signature with activerecord to avoid crash",
"is_bot": false,
"headline": "Merge pull request #62 from arkhitech/master",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-09T20:44:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b330f816e4a2694802ebaa05cc63edac1e92114a",
"body": "Highlight state validations examples on README",
"is_bot": false,
"headline": "Merge pull request #79 from diegotoral/patch-1",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-09T20:32:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb3e32c569518884fdbdcce9890bc190b76680c5",
"body": "Test against ruby 2.6.2",
"is_bot": false,
"headline": "Merge pull request #81 from DmytroStepaniuk/patch-1",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2019-04-09T20:32:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7331ed92000b763f4649032b7093fd8173add119",
"body": null,
"is_bot": false,
"headline": "Test against ruby 2.6.2",
"author_name": "Dmytro Stepaniuk",
"author_login": "DmytroStepaniuk",
"committed_at": "2019-03-26T08:53:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9dfe042733561ffe619d36009f433965f9a705e7",
"body": null,
"is_bot": false,
"headline": "Highlight state validations examples on README",
"author_name": "Diego Toral",
"author_login": "diegotoral",
"committed_at": "2019-03-02T19:26:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbd7d47c25bb2d2f4b9e5a5463027ab573c25b27",
"body": "Remove upperbound constraint on ActiveRecord",
"is_bot": false,
"headline": "Merge pull request #78 from KaanOzkan/ko-ar-upperbound",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2019-02-27T17:32:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7857a670fac67475ae6ad9ffeeddd165ec36441",
"body": "Instead of updating the gemspec with every release we can be less\nconservative. We are already testing against ActiveRecord edge.",
"is_bot": false,
"headline": "Remove upperbound constraint on ActiveRecord",
"author_name": "Kaan Ozkan",
"author_login": "KaanOzkan",
"committed_at": "2019-02-27T16:56:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "245b62331f51b4bb2acb6c433473095e94a8321d",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.5.2",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2018-10-22T20:20:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52f79a94b2cb13acac6dd654fe2b2578d2589200",
"body": "Fix StateMachine initial state with AR#create_with:",
"is_bot": false,
"headline": "Merge pull request #76 from Edouard-chin/rails-5-2-create-with",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2018-10-19T21:32:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ed003703c9b11d6a0c846a7baa198488a76ce56",
"body": "- Turns out that this edge case never worked on 4.2 and 4.1 and 5.0.\n It briedly worked by chance thanks to https://github.com/rails/rails/commit/d4007d5a54b60bd6924eeffb52c126ed32e9f31f in 5.2.1\n\n There was then a refactor that broke it again",
"is_bot": false,
"headline": "Fix 4-2 and 4.1:",
"author_name": "Edouard CHIN",
"author_login": "Edouard-chin",
"committed_at": "2018-10-19T04:46:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a7278e61e9821f4fa06fea73868e7d1bd3f3f77",
"body": "- In rails/rails@366e7e3 a change was\n made in order to fix an issue where `Record.create_with` could end\n up creating multiple nested records.\n That change had a side effect on the implementation of the\n activerecord state machine library.\n\n The TL;DR is that an attribute backed by state machi\n[…]\ntate` key it thinks that the state wasn't set and thus assign a\n default value.\n\n The fix on this PR is to pass the attributes as well as the\n scoped_attributes when initializing the state machine.",
"is_bot": false,
"headline": "Fix StateMachine initial state with AR#create_with:",
"author_name": "Edouard CHIN",
"author_login": "Edouard-chin",
"committed_at": "2018-10-18T20:46:31Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fed06d9fa64af1cba49d241f4a3ae79626946fe3",
"body": null,
"is_bot": false,
"headline": "Link to usage doc in Readme (#72)",
"author_name": "lulalala",
"author_login": "lulalala",
"committed_at": "2018-03-26T14:27:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "33b30c533cafb297a2c5f48174fd67f5b07384c4",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.5.1",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2018-03-19T21:44:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8a1a53e4c7ab71fb68a20f5145919e3bdc18b78",
"body": null,
"is_bot": false,
"headline": "Rails 6 only suport Ruby 2.4+",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2018-03-19T21:21:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "726582c921a068f1d2bf97148872f5a73f15cc95",
"body": null,
"is_bot": false,
"headline": "Test with Ruby 2.5.0",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2018-03-19T21:01:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "622462a644da4e9e056eb20894233bdd91da821e",
"body": "Adds Rails 5.2 support.",
"is_bot": false,
"headline": "Merge pull request #71 from lbrito1/chore/add-rails-5.2-support",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2018-03-19T20:54:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2465d9b976fbc3904c6794395bfc3b0d804f6d7d",
"body": null,
"is_bot": false,
"headline": "Bumps AR upper bound to 6.0.",
"author_name": "Leonardo Brito",
"author_login": "lbrito1",
"committed_at": "2018-03-14T08:42:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2307a2540e2756b78c3a593f9a1b865cdd7819e",
"body": null,
"is_bot": false,
"headline": "Adds Rails 5.2 support.",
"author_name": "Leonardo",
"author_login": "lbrito1",
"committed_at": "2018-02-12T15:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "daec4b5312b6bf64f6e5d24059c25f93c081f18e",
"body": "Update readme for state driven validation",
"is_bot": false,
"headline": "Merge pull request #60 from duleorlovic/validate_in_states_readme",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2017-10-31T04:40:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1930979cf75e2e20a2fb4bb83546f9daf074d120",
"body": null,
"is_bot": false,
"headline": "Matching signature with activerecord avoiding crash",
"author_name": "Hisham Malik",
"author_login": "hishammalik",
"committed_at": "2017-09-05T08:03:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab71f888f50d3287693df7a63a902cffd3ba3ae1",
"body": "Use public API to get AR casted default value.",
"is_bot": false,
"headline": "Merge pull request #61 from IndependentIP/casted_default",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2017-08-23T17:05:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59a2d51a8162cdefda6318476e0f7f0b67bc5b97",
"body": null,
"is_bot": false,
"headline": "Conditionaly define owner_class_attribute_default method.",
"author_name": "Josef Šimánek",
"author_login": "simi",
"committed_at": "2017-08-23T16:24:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "773e164e4795b490c0fb4e7332177fb66aed9e15",
"body": null,
"is_bot": false,
"headline": "Fallback to columns_hash for AR < 4.2.",
"author_name": "Josef Šimánek",
"author_login": "simi",
"committed_at": "2017-08-23T14:12:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1681f94397997fae89f73dab1649c279f83f5b66",
"body": null,
"is_bot": false,
"headline": "Use public API to get AR casted default value.",
"author_name": "Josef Šimánek",
"author_login": "simi",
"committed_at": "2017-08-23T13:08:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3c6c4619a2adee9955e2366d7896a3653030667",
"body": "Instead of `validate :my_thing` we should use\n`validate {|o| o.my_thing }`.",
"is_bot": false,
"headline": "Update readme for state driven validation #58",
"author_name": "Dusan Orlovic",
"author_login": "duleorlovic",
"committed_at": "2017-07-31T15:02:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93a0a6046d0c09dbb99160f15dc100ed9e7e3bc6",
"body": null,
"is_bot": false,
"headline": "Bump to 0.5.0",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2017-06-20T22:19:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d33d27d6bf2f158be9218b8846eade59752e9657",
"body": null,
"is_bot": false,
"headline": "Make sure the gem works with state_machines 0.5.0",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2017-06-20T22:19:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "840c9b1d663c43873c45721a4d564f78a6916f96",
"body": null,
"is_bot": false,
"headline": "Release 0.4.1",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2017-05-02T00:36:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7cadfb2d417c1d97b685bc2f6d7df0893cff5033",
"body": null,
"is_bot": false,
"headline": "Do not test 4.1 with Ruby 2.4.1",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2017-05-02T00:26:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d257fdf4241a526de4f8c7fff54ee0041666406d",
"body": null,
"is_bot": false,
"headline": "Test with newest rubies",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2017-05-02T00:18:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0488d26b7469d4a7be4b176ecc5c8f1e66a77151",
"body": "Add Rails 5.1 support",
"is_bot": false,
"headline": "Merge pull request #51 from jhawthorn/rails_5_1",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2017-05-02T00:05:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab0b7d40eaf518239ae3c14cd6c330f495816f84",
"body": null,
"is_bot": false,
"headline": "Add Rails 5.1 to travis",
"author_name": "John Hawthorn",
"author_login": null,
"committed_at": "2017-04-28T00:57:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae322d6ea9cf21232eaa93fdf9e8a17d9b7d7104",
"body": null,
"is_bot": false,
"headline": "Add Rails 5.1 support",
"author_name": "John Hawthorn",
"author_login": null,
"committed_at": "2017-04-28T00:48:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c573cf4a0452b542b428e9b4ccda0e51ed962b85",
"body": "ActiveRecord >= 5.0 has deprecated using returning false to abort from\ncallbacks in favour of using throw :abort. This commit modifies the test\nsuite to use throw :abort on newer AR versions.",
"is_bot": false,
"headline": "Use throw :abort on ActiveRecord >= 5.0",
"author_name": "John Hawthorn",
"author_login": null,
"committed_at": "2017-04-28T00:44:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29a8a8ff66ed9c0254018a8d0bd2e67f5dafaed3",
"body": null,
"is_bot": false,
"headline": "Release 0.4.0",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2016-05-17T23:26:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "026ea1ce471c4cba2e2fdcd1af1351f1d68f1288",
"body": "Allow and test against Rails 5",
"is_bot": false,
"headline": "Merge pull request #44 from state-machines/rails5",
"author_name": "Rafael França",
"author_login": "rafaelfranca",
"committed_at": "2016-05-17T23:25:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cde2b6b2d8e2a07a39e7fd280f8f94174f1c983",
"body": null,
"is_bot": false,
"headline": "Allow and test against Rails 5",
"author_name": "Rafael Mendonça França",
"author_login": "rafaelfranca",
"committed_at": "2016-05-17T23:13:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8743dd431da7c16a128a19d0c46d169b29dcf3d0",
"body": "version pre release",
"is_bot": false,
"headline": "Merge pull request #37 from state-machines/rails-5",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2015-12-19T14:08:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4f90cd59863a8fa70e297641b1585c7fcaf664c",
"body": null,
"is_bot": false,
"headline": "version pre release",
"author_name": "Abdelkader Boudih",
"author_login": "seuros",
"committed_at": "2015-12-19T14:00:20Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 7,
"commits_last_year": 21,
"latest_release_at": "2026-06-12T19:12:21Z",
"latest_release_tag": "state_machines-activerecord/v0.200.0",
"releases_from_tags": false,
"days_since_last_push": 45,
"active_weeks_last_year": 5,
"days_since_latest_release": 45,
"mean_days_between_releases": 60.8
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "state_machines-activerecord",
"exists": true,
"license": "MIT",
"keywords": [],
"ecosystem": "rubygems",
"matches_repo": true,
"registry_url": "https://rubygems.org/gems/state_machines-activerecord",
"is_deprecated": false,
"latest_version": "0.200.0",
"repository_url": "https://github.com/state-machines/state_machines-activerecord/",
"versions_count": 20,
"total_downloads": 65985866,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2015-01-17T08:25:21.420000Z",
"latest_published_at": "2026-06-12T19:13:02.193000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 45
}
]
},
"popularity": {
"forks": 83,
"stars": 432,
"watchers": 9,
"fork_history": {
"days": [
{
"date": "2015-01-16",
"count": 1
},
{
"date": "2015-01-17",
"count": 1
},
{
"date": "2015-01-18",
"count": 1
},
{
"date": "2015-01-30",
"count": 1
},
{
"date": "2015-05-07",
"count": 1
},
{
"date": "2015-06-01",
"count": 1
},
{
"date": "2015-06-17",
"count": 2
},
{
"date": "2015-06-19",
"count": 1
},
{
"date": "2015-09-15",
"count": 1
},
{
"date": "2015-10-21",
"count": 1
},
{
"date": "2015-10-29",
"count": 1
},
{
"date": "2015-11-02",
"count": 1
},
{
"date": "2015-11-19",
"count": 1
},
{
"date": "2015-11-24",
"count": 2
},
{
"date": "2016-01-26",
"count": 1
},
{
"date": "2016-03-04",
"count": 1
},
{
"date": "2016-03-30",
"count": 1
},
{
"date": "2016-04-30",
"count": 1
},
{
"date": "2016-05-12",
"count": 1
},
{
"date": "2016-10-26",
"count": 1
},
{
"date": "2016-11-23",
"count": 1
},
{
"date": "2016-12-14",
"count": 1
},
{
"date": "2016-12-30",
"count": 1
},
{
"date": "2017-04-28",
"count": 2
},
{
"date": "2017-04-29",
"count": 2
},
{
"date": "2017-04-30",
"count": 1
},
{
"date": "2017-05-01",
"count": 1
},
{
"date": "2017-05-29",
"count": 1
},
{
"date": "2017-06-23",
"count": 1
},
{
"date": "2017-06-26",
"count": 1
},
{
"date": "2017-07-04",
"count": 1
},
{
"date": "2017-07-10",
"count": 1
},
{
"date": "2017-08-11",
"count": 1
},
{
"date": "2017-08-23",
"count": 1
},
{
"date": "2017-08-31",
"count": 1
},
{
"date": "2017-09-05",
"count": 2
},
{
"date": "2017-09-06",
"count": 1
},
{
"date": "2017-09-20",
"count": 1
},
{
"date": "2017-12-05",
"count": 1
},
{
"date": "2017-12-24",
"count": 1
},
{
"date": "2018-02-06",
"count": 1
},
{
"date": "2018-02-12",
"count": 1
},
{
"date": "2018-03-16",
"count": 1
},
{
"date": "2018-03-26",
"count": 1
},
{
"date": "2018-05-15",
"count": 1
},
{
"date": "2018-07-12",
"count": 1
},
{
"date": "2018-07-24",
"count": 1
},
{
"date": "2018-10-18",
"count": 1
},
{
"date": "2018-12-31",
"count": 1
},
{
"date": "2019-02-27",
"count": 1
},
{
"date": "2019-03-02",
"count": 1
},
{
"date": "2019-03-26",
"count": 1
},
{
"date": "2019-04-11",
"count": 1
},
{
"date": "2019-08-20",
"count": 1
},
{
"date": "2020-05-21",
"count": 1
},
{
"date": "2020-09-27",
"count": 1
},
{
"date": "2020-11-22",
"count": 1
},
{
"date": "2021-04-16",
"count": 1
},
{
"date": "2021-04-17",
"count": 1
},
{
"date": "2021-04-28",
"count": 1
},
{
"date": "2021-08-11",
"count": 1
},
{
"date": "2021-12-03",
"count": 1
},
{
"date": "2022-02-04",
"count": 1
},
{
"date": "2022-02-09",
"count": 1
},
{
"date": "2022-09-14",
"count": 1
},
{
"date": "2023-05-05",
"count": 1
},
{
"date": "2023-12-31",
"count": 1
},
{
"date": "2024-04-22",
"count": 1
},
{
"date": "2025-05-20",
"count": 1
},
{
"date": "2025-07-06",
"count": 1
},
{
"date": "2025-07-25",
"count": 1
},
{
"date": "2026-01-12",
"count": 1
},
{
"date": "2026-05-15",
"count": 1
}
],
"complete": true,
"collected": 78,
"total_forks": 83
},
"star_history": null,
"open_issues_and_prs": 4
},
"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": 38284,
"source_files_sampled": 66,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Gemfile"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 1,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 8,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [
{
"name": "debug",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "debug",
"direct": true,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "activerecord",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "appraisal",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "minitest",
"direct": false,
"version": "5.27.0",
"ecosystem": "rubygems"
},
{
"name": "minitest-reporters",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rake",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "rubocop",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "sqlite3",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "state_machines-activemodel",
"direct": false,
"version": null,
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 9,
"direct_count": 1,
"indirect_count": 8
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 57,
"open_issues": 4,
"closed_ratio": 0.937,
"closed_issues": 59,
"closed_unmerged_prs": 17
},
"bus_factor": 2,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "seuros",
"commits": 58,
"avatar_url": "https://avatars.githubusercontent.com/u/2394703?v=4"
},
{
"type": "User",
"login": "rafaelfranca",
"commits": 29,
"avatar_url": "https://avatars.githubusercontent.com/u/47848?v=4"
},
{
"type": "User",
"login": "rosskevin",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/136564?v=4"
},
{
"type": "User",
"login": "huoxito",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/245662?v=4"
},
{
"type": "User",
"login": "simi",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/193936?v=4"
},
{
"type": "User",
"login": "lbrito1",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/2048939?v=4"
},
{
"type": "User",
"login": "gagalago",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/519226?v=4"
},
{
"type": "User",
"login": "olivierlacan",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/65950?v=4"
},
{
"type": "User",
"login": "Edouard-chin",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/8122246?v=4"
},
{
"type": "User",
"login": "lulalala",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/366910?v=4"
}
],
"contributors_sampled": 24,
"top_contributor_share": 0.46
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"release.yml",
"ruby.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"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": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 6,
"reason": "11 out of 18 merged PRs checked by a CI test -- score normalized to 6",
"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": 0,
"reason": "Found 1/18 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 16 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": 0,
"reason": "no 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": 7,
"reason": "8 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 7",
"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": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"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": "89db405eb9301c8c1f714711c4bee6acba65b878",
"ran_at": "2026-07-28T14:08:38Z",
"aggregate_score": 4.3,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-06-12T22:16:51Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-06-12T19:12:09Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 47,
"created_at": "2016-07-28T16:13:48Z",
"last_comment_at": "2019-07-29T22:57:53Z",
"last_comment_author": "philihp"
},
{
"number": 64,
"created_at": "2017-11-06T14:02:10Z",
"last_comment_at": "2025-10-16T03:28:38Z",
"last_comment_author": "hulfo6"
},
{
"number": 73,
"created_at": "2018-05-25T19:50:57Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 93,
"created_at": "2021-01-22T12:47:47Z",
"last_comment_at": "2021-01-27T12:21:47Z",
"last_comment_author": "boardfish"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/state-machines/state_machines-activerecord",
"host": "github.com",
"name": "state_machines-activerecord",
"owner": "state-machines"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"security": 54,
"vitality": 61,
"community": 68,
"governance": 72,
"engineering": 62
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 61,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 41,
"inputs": {
"commits_last_year": 21,
"human_commit_share": 0.91,
"days_since_last_push": 45,
"active_weeks_last_year": 5
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 45 days ago",
"points": 18,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 45
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "5/52 weeks with commits",
"points": 3.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 5
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "21 commits in the last year",
"points": 12.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 21
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "8 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 7",
"points": 7,
"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": 7,
"latest_release_tag": "state_machines-activerecord/v0.200.0",
"releases_from_tags": false,
"days_since_latest_release": 45,
"mean_days_between_releases": 60.8
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "7 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 7
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 45 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 45
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~60.8 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 60.8
}
}
],
"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": 45,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 45 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 45
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 68,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"forks": 83,
"stars": 432,
"watchers": 9,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "432 stars",
"points": 42.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 432
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "83 forks",
"points": 16,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 83
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "9 watchers",
"points": 5,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 9
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"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": 0,
"status": "missed",
"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": 100,
"inputs": {
"packages": [
"state_machines-activerecord"
],
"dependents": null,
"ecosystems": "rubygems",
"total_downloads": 65985866,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "65,985,866 downloads all-time across rubygems",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_total",
"params": {
"count": 65985866,
"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": "good",
"name": "Sustainability & Governance",
"value": 72,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 24,
"top_contributor_share": 0.46
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 46% of commits",
"points": 12.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 46
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "24 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 24
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 16 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"merged_prs": 57,
"open_issues": 4,
"closed_issues": 59,
"issue_closed_ratio": 0.937,
"closed_unmerged_prs": 17
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "94% of issues closed",
"points": 43.8,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 94
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "57/74 decided PRs merged",
"points": 29.5,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 57,
"decided": 74
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 1/18 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"followers": 22,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "state-machines",
"public_repos": 16,
"account_age_days": 4454
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "22 followers of state-machines",
"points": 9.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 22,
"login": "state-machines"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "16 public repos, account ~12 yr old",
"points": 21,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 16
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"state_machines-activerecord"
],
"ecosystems": "rubygems",
"any_deprecated": false,
"min_days_since_publish": 45
},
"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 45 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 45
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "20 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 20
}
}
],
"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": 62,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": "11 out of 18 merged PRs checked by a CI test -- score normalized to 6",
"points": 12,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [
"activerecord",
"ruby",
"state-machine"
],
"has_wiki": false,
"homepage": "https://github.com/state-machines/state_machines-activerecord",
"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": "https://github.com/state-machines/state_machines-activerecord",
"points": 15,
"status": "met",
"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": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 54,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 43,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.3
},
"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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "11 out of 18 merged PRs checked by a CI test -- score normalized to 6",
"points": 1.5,
"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 1/18 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 16 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": "no update tool detected",
"points": 0,
"status": "missed",
"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": "8 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 7",
"points": 5.2,
"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": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"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": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 1 resolved dependencies against OSV; 8 could not be assessed (no resolved version, an unsupported ecosystem, or beyond the reported package list). This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 1
}
},
{
"code": "advisories_unassessed",
"params": {
"count": 8
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 1,
"unassessed_packages": 8,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 1,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"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": 25
},
"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": 32,
"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.637,
"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": "58 of 91 human commits state their intent (structured subject or explanatory body)",
"points": 34,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 58,
"sampled": 91
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 22,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"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": 38284,
"source_files_sampled": 66,
"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/66 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 66,
"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"
],
"report_type": "repository",
"generated_at": "2026-07-28T14:09:03.063424Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/s/state-machines/state_machines-activerecord.svg",
"full_name": "state-machines/state_machines-activerecord",
"license_state": "standard",
"license_spdx": "MIT"
}