fix: Remove bundler version constraint from gemspec#20
Merged
jsonbailey merged 1 commit intomainfrom Feb 23, 2026
Merged
Conversation
The gemspec specified 'bundler ~> 2.0' as a development dependency, which is incompatible with Bundler 4.x now shipping with newer Ruby/OS images. Bundler is part of the Ruby toolchain and does not need to be constrained as a gem dependency. Co-Authored-By: unknown <>
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
5 tasks
keelerm84
approved these changes
Feb 23, 2026
jsonbailey
added a commit
that referenced
this pull request
Feb 25, 2026
🤖 I have created a release *beep* *boop* --- ## [0.2.2](0.2.1...0.2.2) (2026-02-25) ### Bug Fixes * Improve usage reporting ([#18](#18)) ([9f7ec17](9f7ec17)) * Remove bundler version constraint from gemspec ([#20](#20)) ([ef18f32](ef18f32)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jason Bailey <jbailey@launchdarkly.com>
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.
Requirements
No test changes needed — this is a dependency metadata fix only.
Related issues
Fixes Windows CI build failure: https://github.com/launchdarkly/ruby-server-sdk-ai/actions/runs/22231968538/job/64313766966
Describe the solution you've provided
The gemspec declared
bundler ~> 2.0as a development dependency, which constrains Bundler to>= 2.0, < 3.0. The Windows CI runner now ships with Bundler 4.0.6, causingbundle installto fail with a version conflict.This PR removes the
bundlerdevelopment dependency entirely. Bundler is part of the Ruby toolchain and does not need to be listed as a gem dependency — it is always available in any Ruby environment.Describe alternatives you've considered
>= 2.0): This would work but is unnecessary since bundler doesn't need to be declared as a dependency at all.Human review checklist
Gemfile, CI workflows) rely on this constraint being presentAdditional context
Link to Devin run | Requested by @jsonbailey