[ruby-core:114479] [Ruby master Feature#19846] Extend warnings message of bundled gems for gem author

Issue #19846 has been reported by hsbt (Hiroshi SHIBATA). ---------------------------------------- Feature #19846: Extend warnings message of bundled gems for gem author https://bugs.ruby-lang.org/issues/19846 * Author: hsbt (Hiroshi SHIBATA) * Status: Assigned * Priority: Normal * Assignee: hsbt (Hiroshi SHIBATA) ---------------------------------------- This is my task reminder. The current warnings feature of bundled gems only notice for Gemfile. Like this: ``` $ cat Gemfile # frozen_string_literal: true source "https://rubygems.org" gem "activesupport" ``` ``` $ bundle exec irb
require "active_support/all" /Users/hsbt/.local/share/gem/gems/activesupport-7.0.7.2/lib/active_support/core_ext/big_decimal/conversions.rb:3: warning: bigdecimal will be not part of the default gems since Ruby 3.4.0. Add it to your Gemfile. /Users/hsbt/.local/share/gem/gems/activesupport-7.0.7.2/lib/active_support/notifications/fanout.rb:3: warning: mutex_m will be not part of the default gems since Ruby 3.4.0. Add it to your Gemfile.
But we should also notice above message for maintainer of `activesupport` like "Add "mutex_m" with `add_dependency` to `activesupport` gemspec."
--
https://bugs.ruby-lang.org/
participants (1)
-
hsbt (Hiroshi SHIBATA)