From fd71a76f55b84e02ba8a3b560baf9b1f996dedd4 Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Sun, 5 Feb 2023 22:09:40 -0500 Subject: [rubygems/rubygems] Add Ruby 3.2 and 3.3 platforms to Gemfile DSL Along the same lines as https://github.com/rubygems/rubygems/pull/5469, this adds support for Ruby 3.2 and 3.3 platforms: `:ruby_32`, `mri_32`, etc. It also includes a spec that should help catch this earlier in the future, failing if we don't support platforms for the version of Ruby that is running the tests. https://github.com/rubygems/rubygems/commit/7cd19d824d --- lib/bundler/current_ruby.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/bundler/current_ruby.rb') diff --git a/lib/bundler/current_ruby.rb b/lib/bundler/current_ruby.rb index f9987c4da8..f009b07ad7 100644 --- a/lib/bundler/current_ruby.rb +++ b/lib/bundler/current_ruby.rb @@ -22,6 +22,8 @@ module Bundler 2.7 3.0 3.1 + 3.2 + 3.3 ].freeze KNOWN_MAJOR_VERSIONS = KNOWN_MINOR_VERSIONS.map {|v| v.split(".", 2).first }.uniq.freeze -- cgit v1.2.3