summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-12-25 19:15:03 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-12-25 20:10:18 +0900
commit69bb296fa61cc488769227187c95f4cf15ce463c (patch)
treee4ca373d1ff7c6dc062b78f8f5d568b36ad82d1c /lib
parent945fdf609166187321bee53d641957e918efb155 (diff)
Support Ruby 3.5 for bundler platforms
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12452
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/dependency.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/dependency.rb b/lib/bundler/dependency.rb
index 32d5b47f94..09a145b8c8 100644
--- a/lib/bundler/dependency.rb
+++ b/lib/bundler/dependency.rb
@@ -9,7 +9,7 @@ module Bundler
attr_reader :autorequire
attr_reader :groups, :platforms, :gemfile, :path, :git, :github, :branch, :ref, :glob
- ALL_RUBY_VERSIONS = (18..27).to_a.concat((30..34).to_a).freeze
+ ALL_RUBY_VERSIONS = (18..27).to_a.concat((30..35).to_a).freeze
PLATFORM_MAP = {
ruby: [Gem::Platform::RUBY, ALL_RUBY_VERSIONS],
mri: [Gem::Platform::RUBY, ALL_RUBY_VERSIONS],