🐛 Use Bundler's built-in HTTPS github git source - #66
Merged
Merged
Conversation
Remove git_source(:github) overrides (Bundler's built-in github: source is already HTTPS) and SSH GitHub git URLs. An SSH override is recorded in Gemfile.lock as a git@github.com remote, which CI runners cannot clone (rv clean-install: "Permission denied (publickey)"). Lockfile remotes are updated to the URLs Bundler records for the github: shorthand; revisions are unchanged. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01P8aveNcdgPobyMrq8DkD9r
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.
Problem
A
git_source(:github)override (injected by the kettle-jemGemfile.exampletemplate, or older boilerplate) replaces Bundler's built-in HTTPSgithub:source. The SSH form is recorded inGemfile.lockasgit@github.com:remotes, which CI runners cannot clone —locked_deps.ymlfails inrv clean-installwithPermission denied (publickey)(as it did for kettle-rb, kettle-ndjson, kettle-gha-pins and kettle-wash). The template was fixed in #65, but already-templated projects keep the line.Fix
gems/ast-crispr-markdown-markly/Gemfile: removedgit_source(:github)overridegems/ast-crispr-ruby-prism/Gemfile: removedgit_source(:github)overridegems/ast-crispr/Gemfile: removedgit_source(:github)overridegems/ast-merge-git/Gemfile: removedgit_source(:github)overridegems/ast-merge/Gemfile: removedgit_source(:github)overridegems/ast-template/Gemfile: removedgit_source(:github)overridegems/bash-merge/Gemfile: removedgit_source(:github)overridegems/binary-merge/Gemfile: removedgit_source(:github)overridegems/citrus-toml-merge/Gemfile: removedgit_source(:github)overridegems/commonmarker-merge/Gemfile: removedgit_source(:github)overridegems/dotenv-merge/Gemfile: removedgit_source(:github)overridegems/go-merge/Gemfile: removedgit_source(:github)overridegems/html-merge/Gemfile: removedgit_source(:github)overridegems/json-merge/Gemfile: removedgit_source(:github)overridegems/kettle-jem/Gemfile: removedgit_source(:github)overridegems/kramdown-merge/Gemfile: removedgit_source(:github)overridegems/markdown-merge/Gemfile: removedgit_source(:github)overridegems/markly-merge/Gemfile: removedgit_source(:github)overridegems/parslet-toml-merge/Gemfile: removedgit_source(:github)overridegems/plain-merge/Gemfile: removedgit_source(:github)overridegems/prism-merge/Gemfile: removedgit_source(:github)overridegems/psych-merge/Gemfile: removedgit_source(:github)overridegems/rbs-merge/Gemfile: removedgit_source(:github)overridegems/ruby-merge/Gemfile: removedgit_source(:github)overridegems/rust-merge/Gemfile: removedgit_source(:github)overridegems/smorg-rb/Gemfile: removedgit_source(:github)overridegems/toml-merge/Gemfile: removedgit_source(:github)overridegems/tree_haver/Gemfile: removedgit_source(:github)overridegems/typescript-merge/Gemfile: removedgit_source(:github)overridegems/yaml-merge/Gemfile: removedgit_source(:github)overridegems/zip-merge/Gemfile: removedgit_source(:github)overridegems/ast-crispr-markdown-markly/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/ast-crispr-ruby-prism/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/ast-crispr/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/ast-merge-git/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/ast-merge/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/ast-template/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/bash-merge/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/binary-merge/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitgems/citrus-toml-merge/Gemfile.lock:git@github.com:pboling/rubocop-packaging.git -> https://github.com/pboling/rubocop-packaging.gitLockfile remotes are rewritten to exactly what Bundler records for the
github:shorthand (verified by relocking kettle-rb and friends); revisions and checksums are unchanged. CI validates the frozen lockfile.🤖 Generated with Claude Code
https://claude.ai/code/session_01P8aveNcdgPobyMrq8DkD9r