diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-08-04 18:08:42 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-08-04 21:12:09 +0900 |
| commit | ede3c5ee0f2ffa616724ef455420ba82c01c49ab (patch) | |
| tree | 3aecfddf2257a7ef7a3e43053b36486469f6be53 | |
| parent | 48f035228044e06634b46d59c8a255455cbddd70 (diff) | |
Use future tense if current version is older than list version
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8172
| -rw-r--r-- | lib/bundled_gems.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundled_gems.rb b/lib/bundled_gems.rb index 79603d8292..2623e1e96f 100644 --- a/lib/bundled_gems.rb +++ b/lib/bundled_gems.rb @@ -77,7 +77,7 @@ module Gem::BUNDLED_GEMS "#{name} is found in #{gem}" else return - end + " which is not part of the default gems since Ruby #{SINCE[gem]}" + end + " which #{RUBY_VERSION < SINCE[gem] ? "will be" : "is"} not part of the default gems since Ruby #{SINCE[gem]}" end bundled_gems = self |
