зеркало из https://github.com/github/ruby.git
[rubygems/rubygems] util/rubocop -A --only Style/RescueStandardError
https://github.com/rubygems/rubygems/commit/80b57da926
This commit is contained in:
Родитель
70164eec0f
Коммит
6ad269dc39
|
@ -432,7 +432,7 @@ class Gem::Command
|
|||
begin
|
||||
parser.parse!(args.dup)
|
||||
return true
|
||||
rescue
|
||||
rescue StandardError
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
|
|
@ -42,7 +42,7 @@ class Gem::Commands::CheckCommand < Gem::Command
|
|||
say
|
||||
gems = begin
|
||||
get_all_gem_names
|
||||
rescue
|
||||
rescue StandardError
|
||||
[]
|
||||
end
|
||||
|
||||
|
|
|
@ -98,7 +98,7 @@ permission to.
|
|||
action = method == :delete ? "Removing" : "Adding"
|
||||
|
||||
with_response response, "#{action} #{owner}"
|
||||
rescue
|
||||
rescue StandardError
|
||||
# ignore
|
||||
end
|
||||
end
|
||||
|
|
|
@ -108,7 +108,7 @@ Specific fields in the specification can be extracted in YAML format:
|
|||
if File.exist? gem
|
||||
begin
|
||||
specs << Gem::Package.new(gem).spec
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
end
|
||||
|
|
|
@ -88,7 +88,7 @@ data you will need to change them immediately and yank your gem.
|
|||
|
||||
def get_version_from_requirements(requirements)
|
||||
requirements.requirements.first[1].version
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ module Gem
|
|||
|
||||
def self.find_home
|
||||
Dir.home.dup
|
||||
rescue
|
||||
rescue StandardError
|
||||
if Gem.win_platform?
|
||||
File.expand_path File.join(ENV["HOMEDRIVE"] || ENV["SystemDrive"], "/")
|
||||
else
|
||||
|
@ -185,7 +185,7 @@ module Gem
|
|||
def self.default_exec_format
|
||||
exec_format = begin
|
||||
RbConfig::CONFIG["ruby_install_name"].sub("ruby", "%s")
|
||||
rescue
|
||||
rescue StandardError
|
||||
"%s"
|
||||
end
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ class Gem::Ext::Builder
|
|||
build_env = { "SOURCE_DATE_EPOCH" => Gem.source_date_epoch_string }.merge(env)
|
||||
output, status = begin
|
||||
Open3.capture2e(build_env, *command, :chdir => dir)
|
||||
rescue => error
|
||||
rescue StandardError => error
|
||||
raise Gem::InstallError, "#{command_name || class_name} failed#{error.message}"
|
||||
end
|
||||
if verbose
|
||||
|
@ -174,7 +174,7 @@ EOF
|
|||
verbose { results.join("\n") }
|
||||
|
||||
write_gem_make_out results.join "\n"
|
||||
rescue => e
|
||||
rescue StandardError => e
|
||||
results << e.message
|
||||
build_error(results.join("\n"), $@)
|
||||
end
|
||||
|
|
|
@ -199,7 +199,7 @@ class Gem::Ext::CargoBuilder < Gem::Ext::Builder
|
|||
output, status =
|
||||
begin
|
||||
Open3.capture2e(cargo, "metadata", "--no-deps", "--format-version", "1", :chdir => cargo_dir)
|
||||
rescue => error
|
||||
rescue StandardError => error
|
||||
raise Gem::InstallError, "cargo metadata failed #{error.message}"
|
||||
end
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ class Gem::GemRunner
|
|||
|
||||
begin
|
||||
Gem.load_env_plugins
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
Gem.load_plugins
|
||||
|
|
|
@ -669,7 +669,7 @@ EOM
|
|||
when "data.tar.gz" then
|
||||
verify_gz entry
|
||||
end
|
||||
rescue
|
||||
rescue StandardError
|
||||
warn "Exception while verifying #{@gem.path}"
|
||||
raise
|
||||
end
|
||||
|
|
|
@ -126,7 +126,7 @@ class Gem::RemoteFetcher
|
|||
require "fileutils"
|
||||
begin
|
||||
FileUtils.mkdir_p cache_dir
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end unless File.exist? cache_dir
|
||||
|
||||
|
@ -286,7 +286,7 @@ class Gem::RemoteFetcher
|
|||
def cache_update_path(uri, path = nil, update = true)
|
||||
mtime = begin
|
||||
path && File.stat(path).mtime
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
|
||||
|
|
|
@ -176,14 +176,14 @@ class Gem::Security::Signer
|
|||
disk_cert_path = File.join(Gem.default_cert_path)
|
||||
disk_cert = begin
|
||||
File.read(disk_cert_path)
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
|
||||
disk_key_path = File.join(Gem.default_key_path)
|
||||
disk_key = begin
|
||||
OpenSSL::PKey.read(File.read(disk_key_path), @passphrase)
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ class Gem::Source
|
|||
spec = Gem.read_binary local_spec
|
||||
spec = begin
|
||||
Marshal.load(spec)
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
return spec if spec
|
||||
|
|
|
@ -1520,7 +1520,7 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
else
|
||||
executables
|
||||
end
|
||||
rescue
|
||||
rescue StandardError
|
||||
return nil
|
||||
end
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ Run `gem update --system #{Gem.latest_rubygems_version}` to update your installa
|
|||
|
||||
return eglible
|
||||
end
|
||||
rescue # don't block install command on any problem
|
||||
rescue StandardError # don't block install command on any problem
|
||||
false
|
||||
end
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ module Gem::Util
|
|||
loop do
|
||||
begin
|
||||
Dir.chdir here, &block
|
||||
rescue
|
||||
rescue StandardError
|
||||
Errno::EACCES
|
||||
end
|
||||
|
||||
|
|
|
@ -345,7 +345,7 @@ class Gem::TestCase < Test::Unit::TestCase
|
|||
$LOAD_PATH.map! do |s|
|
||||
expand_path = begin
|
||||
File.realpath(s)
|
||||
rescue
|
||||
rescue StandardError
|
||||
File.expand_path(s)
|
||||
end
|
||||
if expand_path != s
|
||||
|
@ -1527,7 +1527,7 @@ Also, a list:
|
|||
def self.cert_path(cert_name)
|
||||
if begin
|
||||
Time.at(2**32)
|
||||
rescue
|
||||
rescue StandardError
|
||||
32
|
||||
end == 32
|
||||
cert_file = "#{__dir__}/#{cert_name}_cert_32.pem"
|
||||
|
|
|
@ -664,7 +664,7 @@ class TestGem < Gem::TestCase
|
|||
gemdir = File.join @tempdir, "a/b/c/gemdir"
|
||||
begin
|
||||
FileUtils.rm_rf File.join(@tempdir, "a")
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
refute File.exist?(File.join(@tempdir, "a")),
|
||||
|
@ -681,7 +681,7 @@ class TestGem < Gem::TestCase
|
|||
gemdir = File.join @tempdir, "egd"
|
||||
begin
|
||||
FileUtils.rm_r gemdir
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
refute File.exist?(gemdir), "manually remove #{gemdir}, tests are broken"
|
||||
|
@ -702,7 +702,7 @@ class TestGem < Gem::TestCase
|
|||
|
||||
begin
|
||||
FileUtils.rm_r parent
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
refute File.exist?(parent), "manually remove #{parent}, tests are broken"
|
||||
|
@ -1510,7 +1510,7 @@ class TestGem < Gem::TestCase
|
|||
with_plugin("load") { Gem.load_env_plugins }
|
||||
begin
|
||||
assert_equal :loaded, TEST_PLUGIN_LOAD
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
|
||||
|
@ -1520,7 +1520,7 @@ class TestGem < Gem::TestCase
|
|||
with_plugin("standarderror") { Gem.load_env_plugins }
|
||||
begin
|
||||
assert_equal :loaded, TEST_PLUGIN_STANDARDERROR
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
|
||||
|
@ -1530,7 +1530,7 @@ class TestGem < Gem::TestCase
|
|||
with_plugin("exception") { Gem.load_env_plugins }
|
||||
begin
|
||||
assert_equal :loaded, TEST_PLUGIN_EXCEPTION
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
end
|
||||
|
|
|
@ -732,7 +732,7 @@ class TestGemCommandsExecCommand < Gem::TestCase
|
|||
|
||||
begin
|
||||
invoke "gem", "uninstall", "--verbose", "-x", "a"
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
refute_includes @ui.output, "running gem exec with"
|
||||
|
|
|
@ -157,7 +157,7 @@ class TestGemCommandsUninstallCommand < Gem::InstallerTestCase
|
|||
@cmd.execute
|
||||
|
||||
assert_equal false, File.exist?(formatted_executable)
|
||||
rescue
|
||||
rescue StandardError
|
||||
Gem::Installer.exec_format = nil
|
||||
end
|
||||
|
||||
|
|
|
@ -1567,7 +1567,7 @@ gem 'other', version
|
|||
installer.install
|
||||
end
|
||||
assert_path_exist so
|
||||
rescue
|
||||
rescue StandardError
|
||||
puts "-" * 78
|
||||
puts File.read File.join(@gemhome, "gems", "a-2", "Makefile")
|
||||
puts "-" * 78
|
||||
|
|
|
@ -363,7 +363,7 @@ PeIQQkFng2VVot/WAQbv3ePqWq07g1BBcwIBAg==
|
|||
FileUtils.chmod 0555, @a1.cache_dir
|
||||
begin
|
||||
FileUtils.mkdir_p File.join(Gem.user_dir, "cache")
|
||||
rescue
|
||||
rescue StandardError
|
||||
nil
|
||||
end
|
||||
FileUtils.chmod 0555, File.join(Gem.user_dir, "cache")
|
||||
|
|
|
@ -3465,7 +3465,7 @@ Did you mean 'Ruby'?
|
|||
capture_output do
|
||||
Gem::Specification.load(specfile.path)
|
||||
end
|
||||
rescue => e
|
||||
rescue StandardError => e
|
||||
name_rexp = Regexp.new(Regexp.escape(specfile.path))
|
||||
assert e.backtrace.grep(name_rexp).any?
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче