summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2023-12-13 05:01:24 -0800
committergit <svn-admin@ruby-lang.org>2023-12-13 19:02:24 +0000
commit6aa26af683616cf908f0251dbb8ffde380e0c314 (patch)
tree22ed4473d1d2a33e1194e046ad5707319ce45151 /lib
parent110dbf62acc307ea2e3ce57ddaa89fc734a715c5 (diff)
[rubygems/rubygems] Add 3.4 as a supported ruby version
Since ruby trunk will be 3.4 very soon https://github.com/rubygems/rubygems/commit/36dd9a35dc
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 ae0a35ad69..efc39a12f3 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
- ALL_RUBY_VERSIONS = ((18..27).to_a + (30..33).to_a).freeze
+ ALL_RUBY_VERSIONS = (18..27).to_a.concat((30..34).to_a).freeze
PLATFORM_MAP = {
ruby: [Gem::Platform::RUBY, ALL_RUBY_VERSIONS],
mri: [Gem::Platform::RUBY, ALL_RUBY_VERSIONS],