Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 170,
"has_wiki": true,
"homepage": null,
"languages": {
"Ruby": 113425
},
"pushed_at": "2020-02-27T14:19:10Z",
"created_at": "2009-01-08T22:03:31Z",
"owner_type": "User",
"updated_at": "2026-05-30T07:12:20Z",
"description": "IniParse is a pure Ruby library for parsing INI configuration and data files.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Ruby",
"significant_languages": [
"Ruby"
]
},
"owner": {
"blog": "https://antw.dev",
"name": "Anthony Williams",
"type": "User",
"login": "antw",
"company": "@Shopify ",
"location": "UK",
"followers": 44,
"avatar_url": "https://avatars.githubusercontent.com/u/4383?v=4",
"created_at": "2008-04-02T23:09:01Z",
"is_verified": null,
"public_repos": 38,
"account_age_days": 6684
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.5.0",
"kind": "minor",
"published_at": "2020-02-27T14:13:15Z"
},
{
"tag": "v1.4.4",
"kind": "patch",
"published_at": "2017-07-04T12:48:51Z"
},
{
"tag": "v1.4.3",
"kind": "patch",
"published_at": "2017-06-01T15:28:31Z"
},
{
"tag": "v1.4.2",
"kind": "patch",
"published_at": "2015-12-03T18:00:03Z"
},
{
"tag": "v1.4.1",
"kind": "patch",
"published_at": "2015-08-04T15:25:06Z"
},
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2015-04-06T15:58:43Z"
},
{
"tag": "v1.3.3",
"kind": "patch",
"published_at": "2014-10-30T16:39:45Z"
},
{
"tag": "v1.3.2",
"kind": "patch",
"published_at": "2014-04-10T15:35:49Z"
},
{
"tag": "v1.3.1",
"kind": "patch",
"published_at": "2014-04-10T15:18:20Z"
},
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2014-04-09T16:28:57Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2014-04-08T16:28:34Z"
},
{
"tag": "v1.1.6",
"kind": "patch",
"published_at": "2012-11-07T20:07:30Z"
},
{
"tag": "v1.1.5",
"kind": "patch",
"published_at": "2011-12-21T20:19:16Z"
},
{
"tag": "v1.1.4",
"kind": "patch",
"published_at": "2010-09-02T10:15:54Z"
},
{
"tag": "v1.1.3",
"kind": "patch",
"published_at": "2010-03-04T21:30:23Z"
},
{
"tag": "v1.1.2",
"kind": "patch",
"published_at": "2010-02-23T16:35:12Z"
},
{
"tag": "v1.1.1",
"kind": "patch",
"published_at": "2010-02-23T16:31:30Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2010-02-23T16:20:35Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2010-01-05T02:50:55Z"
},
{
"tag": "0.2.1",
"kind": "patch",
"published_at": "2009-01-13T20:50:45Z"
}
],
"recent_commits": [
{
"oid": "ba9482dde418f207022e59edafeb03da99609eae",
"body": null,
"is_bot": false,
"headline": "Fix code formatting in changelog",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2020-02-27T14:16:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "088afb7601ffb062753114e5ef6084fd323cfc67",
"body": null,
"is_bot": false,
"headline": "Release 1.5.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2020-02-27T14:13:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ca250458b45b0aac78e80d0246b9995456d50b9",
"body": null,
"is_bot": false,
"headline": "Bump to version 1.5.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2020-02-27T14:12:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "853d3b9350e737a05e44ea5bc59b50f08ef4cb5d",
"body": null,
"is_bot": false,
"headline": "Allow calling collection `each` without a block",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2020-02-27T14:11:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "118498801792ea1d34f5e955cd172c496f55a083",
"body": "Previously OptionCollection#each would yield an Array[Option] when\nduplicate values existed...\n\n collection.each.to_a\n # => [[<key_1 = value_1>, <key_1 = value_2>], <key_2 = value>]\n\nThis makes for ugly code when iterating through each line in the\ndocument.\n\n`each` will now yield duplicates one-at-a-time:\n\n collection.each.to_a\n # => [<key_1 = value_1>, <key_1 = value_2>, <key_2 = value>]\n\nCloses #22",
"is_bot": false,
"headline": "OptionCollection#each yields each duplicate item",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2020-02-27T14:02:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4574f1d71a09402ebe613567691dcaea8af9e4fb",
"body": " - Rakefile task AND gemspec",
"is_bot": false,
"headline": "Drop EOL'd property rubyforge_project",
"author_name": "Olle Jonsson",
"author_login": "olleolleolle",
"committed_at": "2019-07-14T16:07:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72715aa116aa303b05f5415362fb2611e597cb48",
"body": null,
"is_bot": false,
"headline": "Release 1.4.4",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-07-04T12:48:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "314ac6c1151d40105972677a41870f4fd1b00eb0",
"body": null,
"is_bot": false,
"headline": "Improve error message with unparseable lines",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-07-04T12:46:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b99ed74fbae6961434f1c8ce6309472e9fa8e81c",
"body": "Ref https://github.com/antw/iniparse/commit/03fc540051851966e4923955cbdc81c492075d00",
"is_bot": false,
"headline": "Fix handling files with DOS line endings",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-07-04T12:46:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "06fa8529e8057be483e6594c013b4e113b454586",
"body": null,
"is_bot": false,
"headline": "Release 1.4.3",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-06-01T15:28:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fe49d7e527f52a4f070fbbe0cdbc9e2afc664f4",
"body": null,
"is_bot": false,
"headline": "Simplify Ruby versions used by TravisCI",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-06-01T15:19:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b25d2c9a1bb9c93fd14b2af06b3127a544ea5e5",
"body": "Ref #17",
"is_bot": false,
"headline": "Add tests asserting comment order in anonymous section",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-06-01T15:19:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6f47e4136249eaeabd79a399518e032c0fb93b3",
"body": "Fix issue with line ordering in '__anonymous__'",
"is_bot": false,
"headline": "Merge pull request #18 from voroniys/master",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2017-06-01T15:18:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03fc540051851966e4923955cbdc81c492075d00",
"body": "Signed-off-by: Stanislav Voroniy <stas@voroniy.com>",
"is_bot": false,
"headline": "Handle trailing spaces properly",
"author_name": "Stanislav Voroniy",
"author_login": "voroniys",
"committed_at": "2017-05-30T19:45:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7d8a28c6d6308e3b2cedd71b77eec4b73f55766",
"body": "Signed-off-by: Stanislav Voroniy <stas@voroniy.com>",
"is_bot": false,
"headline": "Change test ini to match lines with and without trailing spaces",
"author_name": "Stanislav Voroniy",
"author_login": "voroniys",
"committed_at": "2017-05-30T19:45:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fe66547390aa309797b87c1609be0a9ed6ba8df",
"body": "Signed-off-by: Stanislav Voroniy <stas@voroniy.com>",
"is_bot": false,
"headline": "Preserve the way how key and values were separated",
"author_name": "Stanislav Voroniy",
"author_login": null,
"committed_at": "2017-05-30T16:18:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5b3cdcf2e5d18b87a66d58afe2ed0b3cc012baa4",
"body": null,
"is_bot": false,
"headline": "Fix issue with line ordering in '__anonymous__'",
"author_name": "Stanislav Voroniy",
"author_login": "voroniys",
"committed_at": "2017-05-29T16:24:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0aeb9b908f09521336ace05533a307d432fe3cba",
"body": "Port test suite to RSpec 3",
"is_bot": false,
"headline": "Merge pull request #16 from terceiro/rspec3",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2016-06-16T13:29:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40ca2a8ff9f4f9c803f9227a528ac104f32ac9aa",
"body": null,
"is_bot": false,
"headline": "Specify exact Ruby 2.3 version for Travis",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2016-06-16T00:00:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d20d7a38393a951be6e0d851503c51dab0a213fa",
"body": null,
"is_bot": false,
"headline": "Update Bundler prior to running CI",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2016-06-15T23:44:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c72001ca6bcf1e3fe32deef1d5a8ac0091d47953",
"body": null,
"is_bot": false,
"headline": "Add Ruby 2.2 to travis.yml; remove 1.9",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2016-06-15T19:48:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c93b78e3ae476106821a365c1daba50cb60b48e",
"body": "transpec did all the work",
"is_bot": false,
"headline": "Port test suite to RSpec 3",
"author_name": "Antonio Terceiro",
"author_login": "terceiro",
"committed_at": "2016-06-05T13:34:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "763e3fdf72c1aa938a58ae123ac319ef3a2daf53",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.4.2",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-12-03T18:00:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1d75da6081e4fbff994dd7ea6452ef3f772b108",
"body": "Add a method in document for creating a section...",
"is_bot": false,
"headline": "Merge pull request #15 from orgads/easy-section",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-12-03T17:57:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "619ec696a059bac679b8e080e2a32eccd00dfb75",
"body": "... if it doesn't exist.",
"is_bot": false,
"headline": "Add a method in document for creating a section...",
"author_name": "Orgad Shaneh",
"author_login": "orgads",
"committed_at": "2015-11-23T11:22:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab632e03454952865770b1b884cd3e99569d9f46",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.4.1",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-08-04T15:25:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "196739fd73aa685dcae8688a5c116affa1d09253",
"body": "Closes #14",
"is_bot": false,
"headline": "Double-backslashes do not indicate multiline values",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-08-04T15:23:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c58fad3e4dcaae795d63ac6ec3fb2ffc78b02bb5",
"body": "Brings partial support for multi-line values courtesy of Blake Barnett\nand support for duplicate values thanks to dejitaiza.\n\nDuplicate values are parsed into an array, instead of the last version\nclobbering earlier ones; hence the version bump to 1.4.",
"is_bot": false,
"headline": "Version bump to 1.4.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-04-06T15:58:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e51294fe1a01a9878f8b0b8e9318ba97ef22d300",
"body": "Some changes to make dealing with systemd unit files easier",
"is_bot": false,
"headline": "Merge pull request #12 from shadoi/master",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-04-06T15:55:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d968b48ca66db1d1e9a5451c521f0d312afbc2a",
"body": "Fixed saving duplicate options",
"is_bot": false,
"headline": "Merge pull request #13 from dejitaiza/bugfix/saving-duplicate-options",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2015-04-06T15:55:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a03302b842b26e9365eaf1f0b343e012af8d6af7",
"body": null,
"is_bot": false,
"headline": "tests passing",
"author_name": "Omar Kamali",
"author_login": null,
"committed_at": "2015-03-25T10:35:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8595259b94f50f0f27cfd6d15a2a46c613334ecd",
"body": null,
"is_bot": false,
"headline": "fixed options not conserved after updating a value + indentation",
"author_name": "Omar Kamali",
"author_login": null,
"committed_at": "2015-03-24T20:38:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a239ec7c0854a8a8a65e1b50658df69aa69ee946",
"body": null,
"is_bot": false,
"headline": "fixed saving duplicate options",
"author_name": "Omar Kamali",
"author_login": null,
"committed_at": "2015-03-24T16:43:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a92661c73f5d00142ab82af91017538753a829ec",
"body": "A proper solution would be much preferred but this at least prevents\nblowing up.",
"is_bot": false,
"headline": "A work-around for multi-line options",
"author_name": "Blake Barnett",
"author_login": null,
"committed_at": "2015-03-05T21:14:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8442429eebea9752757a8efd2b784b133d163bf9",
"body": null,
"is_bot": false,
"headline": "Add a Document#to_hash & to_h method",
"author_name": "Blake Barnett",
"author_login": null,
"committed_at": "2015-03-05T21:12:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b06526bd37f38a4cf7dce9bef7180468be71e254",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.3.3",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-10-30T16:39:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47bf4c7f1faf7988b3c3ba866e4031c0048a2405",
"body": null,
"is_bot": false,
"headline": "Remove outdated History document",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-10-30T16:39:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de5a945e678df9c83fca8a70d2b16ebc86361d9e",
"body": "Fix bug - do not typecast 'true' and 'false' when included in a word",
"is_bot": false,
"headline": "Merge pull request #11 from sadikzzz/master",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-10-30T16:36:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc0aebf8156c1b7f3294bfcdb038fc0d791f39cc",
"body": null,
"is_bot": false,
"headline": "Remove old texts from the readme",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-10-30T16:36:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4deaadd2d446e818dd101a22d14993466451c121",
"body": null,
"is_bot": false,
"headline": "Tests for documents with duplicate section names",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-10-30T16:36:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fdbc6ea0242128f50d7688ac3bc9fe9390bd806f",
"body": "Update parsing to handle multiple sections with the same name",
"is_bot": false,
"headline": "Merge pull request #10 from jeffmace/master",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-10-30T16:35:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5cc53b7d67939ffc1a55b5f53b268183bf137074",
"body": null,
"is_bot": false,
"headline": "Fix bug - do not typecast 'true' and 'false' when included in a word",
"author_name": "Bruno Celeste",
"author_login": "brunoceleste",
"committed_at": "2014-10-29T13:58:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2fa39ccd634ac1e5117fe997fd9db1abde338bfa",
"body": "An INI file with multiple sections have the same name would fail to be parsed correctly. This fix will set the @context variable to the existing section object so that parsed options are properly added to it.",
"is_bot": false,
"headline": "Update parsing to handle multiple sections with the same name",
"author_name": "Jeff Mace",
"author_login": "jeffmace",
"committed_at": "2014-07-01T16:46:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4e3957802182a0ac4efa37ddadef2a52bf861dc",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.3.2",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-10T15:35:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3979aaaeee931a04651629dc306610be201fb32c",
"body": null,
"is_bot": false,
"headline": "Add a nicer Document#inspect",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-10T15:35:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9721a91d2df3381e6559e3e0f434f215d7710685",
"body": null,
"is_bot": false,
"headline": "Alias Document#to_ini as #to_s",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-10T15:23:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4cd9c92beb9aa5752375255502bab36ac9ea3a1d",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.3.1",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-10T15:18:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "761804a0dd5c379ee1dc5ac3d28019bc48caead8",
"body": null,
"is_bot": false,
"headline": "Document#to_ini always outputs a trailing newline",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-10T15:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66598895f8fc3e245870cee041c6d1f930a863a4",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.3.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-09T16:28:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67c145527832e19f76055d6a7712dc6ff1136c72",
"body": null,
"is_bot": false,
"headline": "Add better support for deleting sections and options",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-09T16:27:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3891180e8bef7e54a83eaa77a5eae555176fc9c5",
"body": null,
"is_bot": false,
"headline": "Add Ruby 2.1 to the Travis targets",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T16:37:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9816bba7a90ba6b9ee05e8164892e76ccdd4a983",
"body": null,
"is_bot": false,
"headline": "Remove Rubinius from the list of Travis targets",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T16:34:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa647493d681277415238a9753c4b6754e5e871d",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.2.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T16:28:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cf0d4317d24cefc589c10829c9934e6ef4d4a27",
"body": null,
"is_bot": false,
"headline": "Exclude specs from the built Gem",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T16:23:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03be2fd80e546792854cf4ad0739be8f359d594e",
"body": "Any such options will be added to a section called \"__anonymous__\".\n\nFixes #7",
"is_bot": false,
"headline": "Allow options to preceed the first section",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T16:21:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "affa37f4de3666871f0a7da086c1b288a789213e",
"body": null,
"is_bot": false,
"headline": "Fix deprecation notices in specs",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T15:48:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08f2bf8b3ef18204529e1415cbc1dcbcf9bf345e",
"body": "Fixes #8",
"is_bot": false,
"headline": "Preserve comments which have no leading whitespace",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T15:47:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb1e5723324df0c02dea05281e54d340525cbdc2",
"body": null,
"is_bot": false,
"headline": "Specific an explicit source in the Gemfile",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2014-04-08T15:45:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a83cef98de4afc2f1ab6259c4df52356db38ccb6",
"body": null,
"is_bot": false,
"headline": "Release 1.1.6",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T20:07:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6df33a5926848892b6a580f2f04e05356164ca2",
"body": null,
"is_bot": false,
"headline": "Release 1.1.6",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T20:07:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9827c0908bb89c4ec6a56dec04cce93ef69b32f2",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.1.6",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T20:05:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73e489ef1d35d02656ff73b4c6e376a5e1fe0301",
"body": "Fix typo in readme",
"is_bot": false,
"headline": "Merge pull request #5 from Karunamon/patch-1",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T20:03:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88c3d1e4b579eb8061e20eecb49e1b2f062af47e",
"body": "[ci skip]",
"is_bot": false,
"headline": "Add Travis status to the README.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T20:03:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3828886c181e79c6ddb54f7042fe13a6aae05b41",
"body": null,
"is_bot": false,
"headline": "Add a Gemfile.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T19:59:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1ae1cb9781928f70964169fbd8b24ab513427ad",
"body": null,
"is_bot": false,
"headline": "Add Travis-CI configuration.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T19:55:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2092d0bd5a597690faa60e4050169c551d851cd",
"body": "Closes #4.",
"is_bot": false,
"headline": "Improve handling of comments on their own line.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2012-11-07T19:53:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db4c65036453c053d1eb8d0f94523509b7aa2227",
"body": "File.read instead of File.open - File.open returns a File object instead of its contents and breaks the script.",
"is_bot": false,
"headline": "Fix typo in readme",
"author_name": "Michael Parks",
"author_login": "Karunamon",
"committed_at": "2012-11-05T03:42:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63622deb197228af1fa3ac3637994bdf43956e2c",
"body": null,
"is_bot": false,
"headline": "Release 1.1.5",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2011-12-21T20:19:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2570c7c9f766f1752c11b6dd06ee472d1f903bef",
"body": null,
"is_bot": false,
"headline": "Fix deprecation notice in Rakefile.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2011-12-21T20:18:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91086edb3a513db6b74e9459233b76617b1c6dbe",
"body": null,
"is_bot": false,
"headline": "Permit section names to include an \"=\". Closes #3.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2011-12-21T20:15:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ebe1d13085f90b37af01046c4e9b6a0e5456d3a2",
"body": null,
"is_bot": false,
"headline": "Release 1.1.4",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-09-02T10:15:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "134863c3406eb7912b4000f7bebea0ba7b1cf199",
"body": null,
"is_bot": false,
"headline": "Use RSpec 2.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-09-02T10:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98c4de16b06add73a7e164b6087c940312623346",
"body": "See: http://github.com/mojombo/rakegem",
"is_bot": false,
"headline": "Replace Jeweler with Rakegem.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-09-02T09:59:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5b7b8df87ab2575469c710ede7dbbfa9edd1c5f",
"body": null,
"is_bot": false,
"headline": "Correctly parse lines which include an = in the value. Closes #2",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-09-02T09:38:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11bfa7a1ded62782e2931e41b150ff3610f80fb9",
"body": null,
"is_bot": false,
"headline": "Ignore Vim swapfiles.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-09-02T09:36:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad172b073effc03548ff3674cca5c892b8f01500",
"body": null,
"is_bot": false,
"headline": "Update the list of Ruby versions specs are run against.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-03-04T21:39:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b75accde2e96638ae47e418684673909b4cf4b4",
"body": null,
"is_bot": false,
"headline": "Ignore compiled Rubinius files.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-03-04T21:39:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "efdbe286fb37fbb4af621fab411f7b1a20507425",
"body": null,
"is_bot": false,
"headline": "Regenerated gemspec for version 1.1.3",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-03-04T21:30:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee49198611aaf6b12dd3df80cb65dfb18a44d8e4",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.1.3",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-03-04T21:30:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8abaa46e304a7f1df9d739f1e65c0ea687ef1794",
"body": null,
"is_bot": false,
"headline": "Include History when creating the Gem.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-03-04T21:29:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "165d1629b770a8238bc9d00019da0455ba19a17c",
"body": null,
"is_bot": false,
"headline": "Use full path when reading VERSION.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-03-04T21:29:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7365f7ca58890756494f5ca1cad6bc0d4df804b",
"body": null,
"is_bot": false,
"headline": "Regenerated gemspec for version 1.1.2",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:35:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "363fe1e5a512e458e64130c9c87f70b976d9c6ec",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.1.2",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:35:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcec7f41a3e5f18823395c2fe592a6b3c8eb004d",
"body": null,
"is_bot": false,
"headline": "Remove extlib dependency from gemspec.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:35:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "108b56a1163c57047451cf601a19d9063557cae8",
"body": null,
"is_bot": false,
"headline": "Regenerated gemspec for version 1.1.1",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:31:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3244568fc67da5340f3a79318568503a6f07d011",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.1.1",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:31:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ab30d4086420e23f7652a16174146458ef62d9b",
"body": null,
"is_bot": false,
"headline": "Add History file, documenting changes to the library.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:31:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39908ae3252fcecfd9c22436941f16fd2d92d473",
"body": null,
"is_bot": false,
"headline": "Regenerated gemspec for version 1.1.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:20:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "962f7133109062609bc798f76af0dc491219b591",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.1.0",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:20:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "01d7155f6fda387b2d2fbfbc01c3291b9842811b",
"body": null,
"is_bot": false,
"headline": "Remove extlib dependency.",
"author_name": "Anthony Williams",
"author_login": "antw",
"committed_at": "2010-02-23T16:20:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d668d1b4c5841755d0078924b88a7ac731adccb9",
"body": null,
"is_bot": false,
"headline": "Version bump to 1.0.0",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T02:50:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "982d797aefad2d87303aaf8b3e80c83a607cc495",
"body": "Enumerates through each section in turn. See documentation for\nIniParse::Document#each for more information.",
"is_bot": false,
"headline": "Make IniParse::Document enumerable. Resolves #1.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T02:38:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5625ee62e5856962ffe5f4ee98c63a2e59546cb7",
"body": null,
"is_bot": false,
"headline": "Code formatting: end each file with a newline.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T02:33:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b6c4ac8d9fb36f5beaee4d55459329cf47dacee",
"body": null,
"is_bot": false,
"headline": "Use Jeweler for packaging and releases.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T02:29:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0675c913d6bf414eea1fa92f1253037b5ca8820d",
"body": null,
"is_bot": false,
"headline": "Remove old TODO items.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T02:24:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f838f34226001d056f5067188c65832437b50ba",
"body": null,
"is_bot": false,
"headline": "No need to explicitly require rubygems.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T02:13:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7707b4059d2af28ca7304b55e43a3bea4f4e33fe",
"body": null,
"is_bot": false,
"headline": "Add blurb to the README about compatibility.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T01:53:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "60057863371dbc65fb7d40b491ff8550638a962c",
"body": "+Object#instance_methods+ in Ruby 1.9.1 uses Symbols rather than Strings.\nThe specs now accounts for this by testing against Array[Symbol] for all\nRuby versions.",
"is_bot": false,
"headline": "Tweak spec to pass on Ruby 1.9.1.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T01:48:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ad8b9dbf35aff0d7b798962b8b73d45cb86f7bb",
"body": "Ruby 1.8.7 appears to flatten and splat arguments given to Hash.[],\nwhereas 1.8.6 does not. This is now done explicitly resulting in\ngreen test runs on 1.8.6.\n\n272 examples, 6 failures, 1 pending; becomes,\n272 examples, 0 failures, 1 pending.",
"is_bot": false,
"headline": "Fix so that IniParse can be used with Ruby 1.8.6.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T01:39:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "930a0c2dbb3a17188068569b1c00641a6be68586",
"body": null,
"is_bot": false,
"headline": "Update license date.",
"author_name": "Anthony Williams",
"author_login": null,
"committed_at": "2010-01-05T01:26:58Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 20,
"commits_last_year": 0,
"latest_release_at": "2020-02-27T14:13:15Z",
"latest_release_tag": "v1.5.0",
"releases_from_tags": true,
"days_since_last_push": 2336,
"active_weeks_last_year": 0,
"days_since_latest_release": 2336,
"mean_days_between_releases": 238.9
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "iniparse",
"exists": true,
"license": "MIT",
"keywords": [],
"ecosystem": "rubygems",
"matches_repo": true,
"registry_url": "https://rubygems.org/gems/iniparse",
"is_deprecated": false,
"latest_version": "1.5.0",
"repository_url": "http://github.com/antw/iniparse",
"versions_count": 19,
"total_downloads": 43214797,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2009-07-25T18:13:35Z",
"latest_published_at": "2020-02-27T14:14:15.045000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 2336
}
]
},
"popularity": {
"forks": 18,
"stars": 54,
"watchers": 3,
"fork_history": {
"days": [
{
"date": "2013-07-15",
"count": 1
},
{
"date": "2013-08-27",
"count": 1
},
{
"date": "2014-01-08",
"count": 1
},
{
"date": "2014-02-12",
"count": 1
},
{
"date": "2014-10-29",
"count": 1
},
{
"date": "2015-03-05",
"count": 1
},
{
"date": "2015-03-24",
"count": 1
},
{
"date": "2015-07-03",
"count": 1
},
{
"date": "2015-11-23",
"count": 1
},
{
"date": "2016-06-05",
"count": 1
},
{
"date": "2017-03-08",
"count": 1
},
{
"date": "2017-05-16",
"count": 1
},
{
"date": "2017-09-26",
"count": 1
},
{
"date": "2018-04-01",
"count": 1
},
{
"date": "2019-07-14",
"count": 1
},
{
"date": "2020-11-02",
"count": 1
},
{
"date": "2020-11-24",
"count": 1
},
{
"date": "2022-06-01",
"count": 1
}
],
"complete": true,
"collected": 18,
"total_forks": 18
},
"star_history": {
"days": [
{
"date": "2009-01-08",
"count": 2
},
{
"date": "2009-01-27",
"count": 1
},
{
"date": "2009-02-25",
"count": 1
},
{
"date": "2009-04-23",
"count": 1
},
{
"date": "2013-10-22",
"count": 1
},
{
"date": "2013-12-08",
"count": 1
},
{
"date": "2014-03-19",
"count": 1
},
{
"date": "2014-04-15",
"count": 1
},
{
"date": "2014-05-04",
"count": 1
},
{
"date": "2014-05-08",
"count": 1
},
{
"date": "2014-05-11",
"count": 1
},
{
"date": "2014-06-07",
"count": 1
},
{
"date": "2014-10-23",
"count": 1
},
{
"date": "2014-12-18",
"count": 1
},
{
"date": "2015-04-02",
"count": 1
},
{
"date": "2015-09-26",
"count": 1
},
{
"date": "2015-11-05",
"count": 1
},
{
"date": "2016-01-08",
"count": 1
},
{
"date": "2016-03-15",
"count": 1
},
{
"date": "2016-06-17",
"count": 1
},
{
"date": "2017-03-08",
"count": 1
},
{
"date": "2017-03-20",
"count": 1
},
{
"date": "2017-06-28",
"count": 1
},
{
"date": "2017-08-22",
"count": 1
},
{
"date": "2017-08-28",
"count": 1
},
{
"date": "2017-10-25",
"count": 1
},
{
"date": "2018-02-17",
"count": 1
},
{
"date": "2018-04-13",
"count": 1
},
{
"date": "2018-06-06",
"count": 1
},
{
"date": "2019-08-02",
"count": 1
},
{
"date": "2020-02-10",
"count": 3
},
{
"date": "2020-02-11",
"count": 3
},
{
"date": "2020-02-21",
"count": 1
},
{
"date": "2020-02-23",
"count": 1
},
{
"date": "2020-04-08",
"count": 1
},
{
"date": "2020-05-13",
"count": 1
},
{
"date": "2021-01-19",
"count": 1
},
{
"date": "2021-04-18",
"count": 1
},
{
"date": "2026-05-23",
"count": 1
},
{
"date": "2026-05-24",
"count": 1
},
{
"date": "2026-05-25",
"count": 7
},
{
"date": "2026-05-26",
"count": 1
},
{
"date": "2026-05-30",
"count": 1
}
],
"complete": true,
"collected": 54,
"total_stars": 54
},
"open_issues_and_prs": 3
},
"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": 14431,
"source_files_sampled": 19,
"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": 1,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "rspec",
"direct": false,
"version": null,
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 1,
"direct_count": 0,
"indirect_count": 1
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 9,
"open_issues": 3,
"closed_ratio": 0.769,
"closed_issues": 10,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "antw",
"commits": 75,
"avatar_url": "https://avatars.githubusercontent.com/u/4383?v=4"
},
{
"type": "User",
"login": "voroniys",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/2347334?v=4"
},
{
"type": "User",
"login": "terceiro",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/30027?v=4"
},
{
"type": "User",
"login": "brunoceleste",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/6307?v=4"
},
{
"type": "User",
"login": "jeffmace",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/249879?v=4"
},
{
"type": "User",
"login": "Karunamon",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/562413?v=4"
},
{
"type": "User",
"login": "olleolleolle",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/211?v=4"
},
{
"type": "User",
"login": "orgads",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/1246544?v=4"
}
],
"contributors_sampled": 8,
"top_contributor_share": 0.893
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"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": 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": 0,
"reason": "0 out of 4 merged PRs checked by a CI test -- score normalized to 0",
"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 4/25 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 6,
"reason": "project has 2 contributing companies or organizations -- score normalized to 6",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": null,
"reason": "no dependencies found",
"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": null,
"reason": "No tokens found",
"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": "ba9482dde418f207022e59edafeb03da99609eae",
"ran_at": "2026-07-21T23:51:18Z",
"aggregate_score": 2.8,
"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": null,
"oldest_open_prs": [],
"last_merged_pr_at": "2019-07-14T16:07:03Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 6,
"created_at": "2013-08-04T17:07:11Z",
"last_comment_at": "2015-02-09T21:38:38Z",
"last_comment_author": "shadoi"
},
{
"number": 20,
"created_at": "2017-09-26T09:15:14Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 23,
"created_at": "2020-05-14T19:09:56Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/antw/iniparse",
"host": "github.com",
"name": "iniparse",
"owner": "antw"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": "Abandonment Policy applies a 85% multiplier to weighted overall health.",
"notes": [
{
"code": "abandonment_overall_adjustment",
"params": {
"cap": 0,
"pct": 85
}
}
],
"value": 32,
"inputs": {
"security": 28,
"vitality": 13,
"community": 58,
"governance": 54,
"engineering": 34,
"abandonment_cap": null,
"abandonment_state": "at_risk",
"abandonment_multiplier": 85,
"weighted_overall_before_abandonment": 38,
"overall_after_abandonment_multiplier": 32
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 13,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 1,
"days_since_last_push": 2336,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 2336 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "push_recency",
"params": {
"days": 2336
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"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": 32,
"inputs": {
"releases_count": 20,
"latest_release_tag": "v1.5.0",
"releases_from_tags": true,
"days_since_latest_release": 2336,
"mean_days_between_releases": 238.9
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "20 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 20
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 2336 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 2336
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~238.9 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 238.9
}
}
],
"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": 85,
"inputs": {
"cap": null,
"state": "at_risk",
"guards": [
"no_open_demand"
],
"signals": [
"release_stall",
"scorecard_unmaintained"
],
"red_flag": true,
"multiplier_pct": 85,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 0,
"unanswered_open_issues": 3,
"days_since_last_merged_pr": 2564,
"days_since_last_human_commit": 2336,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 2336 days; 2 unmet obligation(s): releases stalled, Scorecard reports it unmaintained",
"points": 85,
"status": "partial",
"details": [
{
"code": "abandonment_flagged",
"params": {
"days": 2336,
"count": 2,
"signals": "releases stalled, Scorecard reports it unmaintained"
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 58,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"forks": 18,
"stars": 54,
"watchers": 3,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "54 stars",
"points": 28,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 54
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "18 forks",
"points": 10.3,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 18
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "3 watchers",
"points": 1.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 3
}
}
],
"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": 99,
"inputs": {
"packages": [
"iniparse"
],
"dependents": null,
"ecosystems": "rubygems",
"total_downloads": 43214797,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "43,214,797 downloads all-time across rubygems",
"points": 79.3,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 43214797,
"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": 54,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 28,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 8,
"top_contributor_share": 0.893
},
"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 89% of commits",
"points": 2.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 89
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "8 contributors",
"points": 10.8,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 8
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"merged_prs": 9,
"open_issues": 3,
"closed_issues": 10,
"issue_closed_ratio": 0.769,
"closed_unmerged_prs": 1
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "77% of issues closed",
"points": 36,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 77
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "9/10 decided PRs merged",
"points": 34.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 9,
"decided": 10
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 4/25 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": 57,
"inputs": {
"followers": 44,
"owner_type": "User",
"is_verified": null,
"owner_login": "antw",
"public_repos": 38,
"account_age_days": 6684
},
"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": "44 followers of antw",
"points": 11.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 44,
"login": "antw"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "38 public repos, account ~18 yr old",
"points": 23.6,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 38
}
},
{
"code": "account_age_years",
"params": {
"years": 18
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "moderate",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"packages": [
"iniparse"
],
"ecosystems": "rubygems",
"any_deprecated": false,
"min_days_since_publish": 2336
},
"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 2336 days ago",
"points": 4,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 2336
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "19 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 19
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 34,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_ci": false,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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": "0 out of 4 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "critical",
"name": "Security",
"value": 28,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 28,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 2.8
},
"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": "0 out of 4 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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 4/25 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 2 contributing companies or organizations -- score normalized to 6",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": 13
},
"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": "critical",
"name": "AI Readiness",
"value": 25,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.19,
"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": "19 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 10.1,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 19,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 24,
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": 14431,
"source_files_sampled": 19,
"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/19 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 19,
"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": [
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-21T23:51:28.373404Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/a/antw/iniparse.svg",
"full_name": "antw/iniparse",
"license_state": "standard",
"license_spdx": "MIT"
}