mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 03:24:00 +02:00
Merge RubyGems-3.3.19 and Bundler-2.3.19
This commit is contained in:
parent
0918783347
commit
44c926f3a9
362 changed files with 7843 additions and 7605 deletions
|
@ -1,35 +1,35 @@
|
|||
# frozen_string_literal: true
|
||||
require_relative '../command'
|
||||
require_relative '../dependency_list'
|
||||
require_relative '../uninstaller'
|
||||
require_relative "../command"
|
||||
require_relative "../dependency_list"
|
||||
require_relative "../uninstaller"
|
||||
|
||||
class Gem::Commands::CleanupCommand < Gem::Command
|
||||
def initialize
|
||||
super 'cleanup',
|
||||
'Clean up old versions of installed gems',
|
||||
super "cleanup",
|
||||
"Clean up old versions of installed gems",
|
||||
:force => false, :install_dir => Gem.dir,
|
||||
:check_dev => true
|
||||
|
||||
add_option('-n', '-d', '--dry-run',
|
||||
'Do not uninstall gems') do |value, options|
|
||||
add_option("-n", "-d", "--dry-run",
|
||||
"Do not uninstall gems") do |value, options|
|
||||
options[:dryrun] = true
|
||||
end
|
||||
|
||||
add_option(:Deprecated, '--dryrun',
|
||||
'Do not uninstall gems') do |value, options|
|
||||
add_option(:Deprecated, "--dryrun",
|
||||
"Do not uninstall gems") do |value, options|
|
||||
options[:dryrun] = true
|
||||
end
|
||||
deprecate_option('--dryrun', extra_msg: 'Use --dry-run instead')
|
||||
deprecate_option("--dryrun", extra_msg: "Use --dry-run instead")
|
||||
|
||||
add_option('-D', '--[no-]check-development',
|
||||
'Check development dependencies while uninstalling',
|
||||
'(default: true)') do |value, options|
|
||||
add_option("-D", "--[no-]check-development",
|
||||
"Check development dependencies while uninstalling",
|
||||
"(default: true)") do |value, options|
|
||||
options[:check_dev] = value
|
||||
end
|
||||
|
||||
add_option('--[no-]user-install',
|
||||
'Cleanup in user\'s home directory instead',
|
||||
'of GEM_HOME.') do |value, options|
|
||||
add_option("--[no-]user-install",
|
||||
"Cleanup in user's home directory instead",
|
||||
"of GEM_HOME.") do |value, options|
|
||||
options[:user_install] = value
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue