diff options
author | David RodrÃguez <[email protected]> | 2024-07-08 17:39:24 +0200 |
---|---|---|
committer | git <[email protected]> | 2024-07-08 17:06:26 +0000 |
commit | ae6a2d06411762408bdee07e9105f940d76a870b (patch) | |
tree | 66d9ab32ec39d80b8ee5e828fb7de9741a8504db | |
parent | 39826f384a2a5243530ba99a69b112fb3773b633 (diff) |
[rubygems/rubygems] Fix wrong version is comment
This RubyGems feature is being released as 3.5.15, so we can stop
monkeypatching RubyGems once support for the previous version is
dropped.
https://github.com/rubygems/rubygems/commit/36f146840d
-rw-r--r-- | lib/bundler/rubygems_ext.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/rubygems_ext.rb b/lib/bundler/rubygems_ext.rb index e131b3ce4c..503959bba7 100644 --- a/lib/bundler/rubygems_ext.rb +++ b/lib/bundler/rubygems_ext.rb @@ -53,7 +53,7 @@ module Gem require "rubygems/specification" - # Can be removed once RubyGems 3.5.15 support is dropped + # Can be removed once RubyGems 3.5.14 support is dropped VALIDATES_FOR_RESOLUTION = Specification.new.respond_to?(:validate_for_resolution).freeze class Specification |