summaryrefslogtreecommitdiff
path: root/lib/rubygems/command.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2023-03-22 13:26:37 +0900
committerHiroshi SHIBATA <[email protected]>2023-03-23 17:18:49 +0900
commit0eef33e113e61f0d6efcf47f93602bd9d68f68d2 ()
tree1305402633da67630cf1ebfebbb6a630420108be /lib/rubygems/command.rb
parentbec069b0cae3934bb2caee3aad7fbf587ab95937 (diff)
[rubygems/rubygems] util/rubocop -A --only Style/Next
https://.com/rubygems/rubygems/commit/e5868e92f7
Notes: Merged: https://.com/ruby/ruby/pull/7582
-rw-r--r--lib/rubygems/command.rb23
1 files changed, 11 insertions, 12 deletions
@@ -395,22 +395,21 @@ class Gem::Command
def check_deprecated_options(options)
options.each do |option|
- if option_is_deprecated?(option)
- deprecation = @deprecated_options[command][option]
- version_to_expire = deprecation["rg_version_to_expire"]
- deprecate_option_msg = if version_to_expire
- "The \"#{option}\" option has been deprecated and will be removed in Rubygems #{version_to_expire}."
- else
- "The \"#{option}\" option has been deprecated and will be removed in future versions of Rubygems."
- end
- extra_msg = deprecation["extra_msg"]
- deprecate_option_msg += " #{extra_msg}" if extra_msg
- alert_warning(deprecate_option_msg)
- end
end
end