Skip to content

Commit

Permalink
Require Ruby 3.1 in Gemfile
Browse files Browse the repository at this point in the history
The `ruby-lsp` gem supports 3.0 or above, but its `rbi` development
dependency requires Ruby 3.1. And because dependabot always uses the lowest
required Ruby to run the job, it's always failing to find the right `rbi`
version.

Hopefully this change will make dependabot use Ruby 3.1 and above instead.
  • Loading branch information
st0012 committed Aug 2, 2024
1 parent 240d7ed commit a6f4acc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ source "https://rubygems.org"

gemspec

ruby ">= 3.1"

gem "bundler", "~> 2.5"
gem "minitest", "~> 5.23"

Expand Down
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,8 @@ DEPENDENCIES
syntax_tree (>= 6.1.1, < 7)
tapioca (~> 0.13)

RUBY VERSION
ruby 3.3.4p94

BUNDLED WITH
2.5.10

0 comments on commit a6f4acc

Please sign in to comment.