mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00
[rubygems/rubygems] util/rubocop -A --only Style/LineEndConcatenation
67ece7b8b6
This commit is contained in:
parent
bffadcd6d4
commit
fb822076d7
23 changed files with 53 additions and 53 deletions
|
@ -95,7 +95,7 @@ class Gem::Commands::UninstallCommand < Gem::Command
|
|||
end
|
||||
|
||||
def defaults_str # :nodoc:
|
||||
"--version '#{Gem::Requirement.default}' --no-force " +
|
||||
"--version '#{Gem::Requirement.default}' --no-force " \
|
||||
"--user-install"
|
||||
end
|
||||
|
||||
|
@ -183,12 +183,12 @@ that is a dependency of an existing gem. You can use the
|
|||
uninstall(gem_name)
|
||||
rescue Gem::GemNotInHomeException => e
|
||||
spec = e.spec
|
||||
alert("In order to remove #{spec.name}, please execute:\n" +
|
||||
alert("In order to remove #{spec.name}, please execute:\n" \
|
||||
"\tgem uninstall #{spec.name} --install-dir=#{spec.installation_path}")
|
||||
rescue Gem::UninstallError => e
|
||||
spec = e.spec
|
||||
alert_error("Error: unable to successfully uninstall '#{spec.name}' which is " +
|
||||
"located at '#{spec.full_gem_path}'. This is most likely because" +
|
||||
alert_error("Error: unable to successfully uninstall '#{spec.name}' which is " \
|
||||
"located at '#{spec.full_gem_path}'. This is most likely because" \
|
||||
"the current user does not have the appropriate permissions")
|
||||
terminate_interaction 1
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue