Actions
Feature #19846
closedExtend warnings message of bundled gems for gem author
Description
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."
Actions
Like0
Like0