Conversation
Future versions of bundler require `bundle config {set|get|...}`,
not just `bundle config ...`
|
ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (2)
WalkthroughThis pull request modernizes Bundler configuration syntax across two build contexts. The integration Dockerfile's Ruby installation block updates global Bundler configuration to use the 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
Updates BOSH build/CI scripts to use Bundler’s bundle config subcommands (set) to stay compatible with newer Bundler releases that no longer accept the legacy bundle config <key> <value> form.
Changes:
- Switch
bundle config build.*usage in the director package build tobundle config set build.*. - Switch global Bundler config in the integration image build to
bundle config set --global ....
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| packages/director/packaging | Updates Bundler build config commands for mysql2/pg native extension compilation to use bundle config set. |
| ci/dockerfiles/integration/Dockerfile | Updates global Bundler config commands (path, bin) to use bundle config set --global. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Future versions of bundler require
bundle config {set|get|...}, not justbundle config ...