Fill in gem metadata and refresh README - #20
Open
benrfairless wants to merge 2 commits into
Open
Conversation
10 tasks
benrfairless
marked this pull request as ready for review
August 12, 2026 01:56
benrfairless
force-pushed
the
chore/update-gem-metadata
branch
from
August 12, 2026 03:00
d63ae51 to
2c8a234
Compare
ianheggie-oaf
approved these changes
Aug 12, 2026
ianheggie-oaf
left a comment
Member
There was a problem hiding this comment.
Approved - LGTM at a glance
benrfairless
force-pushed
the
chore/update-gem-metadata
branch
from
August 12, 2026 03:51
2c8a234 to
35d01fd
Compare
The gem had an empty homepage on rubygems.org and no metadata URIs, so the rubygems.org page linked to nothing useful. - Set homepage and homepage_uri/source_code_uri/bug_tracker_uri/ changelog_uri metadata pointing at this repository - Require MFA for manual pushes to RubyGems (rubygems_mfa_required=true) and drop the RuboCop todo entry that was excusing its absence - Give the gem an accurate summary and description that mention morph.io and what the CLI actually does - Add a CHANGELOG.md (Keep a Changelog format) covering the unreleased modernisation work - Rewrite the README: working badges, accurate supported Ruby (>= 3.3), install/usage including where the API key is stored, development instructions, contributing section pointing at the OpenAustralia Foundation contributing guide, and a license section Assisted-by: opencode/anthropic.claude-fable-5 Signed-off-by: Ben Fairless <ben@oaf.org.au>
Assisted-by: Claude Code:anthropic.claude-fable-5
benrfairless
force-pushed
the
chore/update-gem-metadata
branch
from
August 13, 2026 06:03
35d01fd to
82031b9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes the gem's metadata and documentation:
homepage_uri,source_code_uri,bug_tracker_uriandchangelog_urimetadatarubygems_mfa_required = "true"so manual pushes to RubyGems require MFA (the matching RuboCop todo exclusion is removed)CHANGELOG.mdin Keep a Changelog format, covering the unreleased modernisation work and linked from the gem metadataMotivation and Context
The rubygems.org listing for morph-cli has no homepage or source link, making the gem hard to trace back to this repo, and the README claimed Ruby 1.9 support. Part 4 of the modernisation series.
How Has This Been Tested?
bundle exec rake buildthen inspected the built gem withgem specto confirm homepage and metadata are set;bundle exec rspec(29 examples, 0 failures) andbundle exec rubocop(no offenses) on Ruby 3.2.2.Screenshots (if appropriate):
N/A
Types of Changes
Checklist:
Part 4 of the 5-PR modernisation series. Stacked on #19 (base branch
chore/increase-test-coverage); GitHub will retarget as the stack merges.Assisted-by: opencode/anthropic.claude-fable-5