summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-11-08 07:25:33 +0900
committergit <svn-admin@ruby-lang.org>2025-11-10 03:49:44 +0000
commit40d6626bbf0b0bd4c672d48dbf928ab8429912f9 (patch)
treee26c37a0ca0487e3e873dd3fddd16803dc96f056
parentb1dfcd6507452d577162d12ecb0828abe64d8162 (diff)
[ruby/rubygems] Fixed with Lint/RedundantSplatExpansion
https://github.com/ruby/rubygems/commit/2078f3d351
-rw-r--r--lib/bundler/current_ruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/current_ruby.rb b/lib/bundler/current_ruby.rb
index abb7ca2195..ab6520a106 100644
--- a/lib/bundler/current_ruby.rb
+++ b/lib/bundler/current_ruby.rb
@@ -11,7 +11,7 @@ module Bundler
end
class CurrentRuby
- ALL_RUBY_VERSIONS = [*18..27, *30..34, *40].freeze
+ ALL_RUBY_VERSIONS = [*18..27, *30..34, 40].freeze
KNOWN_MINOR_VERSIONS = ALL_RUBY_VERSIONS.map {|v| v.digits.reverse.join(".") }.freeze
KNOWN_MAJOR_VERSIONS = ALL_RUBY_VERSIONS.map {|v| v.digits.last.to_s }.uniq.freeze
PLATFORM_MAP = {