зеркало из https://github.com/github/ruby.git
* lib/rubygems/*: Remove unused variables warnings
Patch by Run Paint [ruby-core:30991] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
571ed8655f
Коммит
cceca83afe
|
@ -168,7 +168,7 @@ class Gem::Command
|
|||
"Please specify at least one gem name (e.g. gem build GEMNAME)"
|
||||
end
|
||||
|
||||
gem_names = args.select { |arg| arg !~ /^-/ }
|
||||
args.select { |arg| arg !~ /^-/ }
|
||||
end
|
||||
|
||||
##
|
||||
|
@ -430,7 +430,7 @@ class Gem::Command
|
|||
@parser.separator " #{header}Options:"
|
||||
|
||||
option_list.each do |args, handler|
|
||||
dashes = args.select { |arg| arg =~ /^-/ }
|
||||
args.select { |arg| arg =~ /^-/ }
|
||||
@parser.on(*args) do |value|
|
||||
handler.call(value, @options)
|
||||
end
|
||||
|
|
|
@ -35,7 +35,7 @@ class Gem::Commands::BuildCommand < Gem::Command
|
|||
while not f.eof? and spec = Gem::Specification.from_yaml(f)
|
||||
result << spec
|
||||
end
|
||||
rescue Gem::EndOfYAMLException => e
|
||||
rescue Gem::EndOfYAMLException
|
||||
# OK
|
||||
end
|
||||
end
|
||||
|
|
|
@ -71,7 +71,7 @@ class Gem::Commands::CheckCommand < Gem::Command
|
|||
say "Verifying gem: '#{gem_name}'"
|
||||
begin
|
||||
Gem::Validator.new.verify_gem_file(gem_name)
|
||||
rescue Exception => e
|
||||
rescue Exception
|
||||
alert_error "#{gem_name} is invalid."
|
||||
end
|
||||
end
|
||||
|
|
|
@ -161,19 +161,19 @@ class Gem::Commands::QueryCommand < Gem::Command
|
|||
end
|
||||
|
||||
versions.each do |gem_name, matching_tuples|
|
||||
matching_tuples = matching_tuples.sort_by do |(name, version,_),_|
|
||||
matching_tuples = matching_tuples.sort_by do |(_, version,_),_|
|
||||
version
|
||||
end.reverse
|
||||
|
||||
platforms = Hash.new { |h,version| h[version] = [] }
|
||||
|
||||
matching_tuples.map do |(name, version, platform,_),_|
|
||||
matching_tuples.map do |(_, version, platform,_),_|
|
||||
platforms[version] << platform if platform
|
||||
end
|
||||
|
||||
seen = {}
|
||||
|
||||
matching_tuples.delete_if do |(name, version,_),_|
|
||||
matching_tuples.delete_if do |(_, version,_),_|
|
||||
if seen[version] then
|
||||
true
|
||||
else
|
||||
|
@ -186,7 +186,7 @@ class Gem::Commands::QueryCommand < Gem::Command
|
|||
|
||||
if options[:versions] then
|
||||
list = if platforms.empty? or options[:details] then
|
||||
matching_tuples.map { |(name, version,_),_| version }.uniq
|
||||
matching_tuples.map { |(_, version,_),_| version }.uniq
|
||||
else
|
||||
platforms.sort.reverse.map do |version, pls|
|
||||
if pls == [Gem::Platform::RUBY] then
|
||||
|
|
|
@ -17,7 +17,7 @@ class Gem::Commands::ServerCommand < Gem::Command
|
|||
else
|
||||
begin
|
||||
Socket.getservbyname port
|
||||
rescue SocketError => e
|
||||
rescue SocketError
|
||||
raise OptionParser::InvalidArgument, "#{port}: no such named service"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -181,11 +181,11 @@ class Gem::Commands::UpdateCommand < Gem::Command
|
|||
end
|
||||
end
|
||||
|
||||
matching_gems = spec_tuples.select do |(name, version, platform),|
|
||||
matching_gems = spec_tuples.select do |(name, _, platform),|
|
||||
name == l_name and Gem::Platform.match platform
|
||||
end
|
||||
|
||||
highest_remote_gem = matching_gems.sort_by do |(name, version),|
|
||||
highest_remote_gem = matching_gems.sort_by do |(_, version),|
|
||||
version
|
||||
end.last
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ class Gem::DocManager
|
|||
:formatter => RDoc::RI::Formatter,
|
||||
}
|
||||
|
||||
driver = RDoc::RI::Driver.new(options).class_cache
|
||||
RDoc::RI::Driver.new(options).class_cache
|
||||
end
|
||||
|
||||
##
|
||||
|
|
|
@ -32,8 +32,6 @@ class Gem::Format
|
|||
# representing the data in the gem
|
||||
|
||||
def self.from_file_by_path(file_path, security_policy = nil)
|
||||
format = nil
|
||||
|
||||
unless File.exist?(file_path)
|
||||
raise Gem::Exception, "Cannot load gem at [#{file_path}] in #{Dir.pwd}"
|
||||
end
|
||||
|
|
|
@ -42,7 +42,7 @@ begin
|
|||
# Reference a constant defined in the .rb portion of ssl (just to
|
||||
# make sure that part is loaded too).
|
||||
|
||||
dummy = OpenSSL::Digest::SHA1
|
||||
OpenSSL::Digest::SHA1
|
||||
|
||||
Gem.ssl_available = true
|
||||
|
||||
|
|
|
@ -318,7 +318,7 @@ class Gem::Installer
|
|||
def generate_bin_script(filename, bindir)
|
||||
bin_script_path = File.join bindir, formatted_program_filename(filename)
|
||||
|
||||
exec_path = File.join @gem_dir, @spec.bindir, filename
|
||||
File.join @gem_dir, @spec.bindir, filename
|
||||
|
||||
# HACK some gems don't have #! in their executables, restore 2008/06
|
||||
#if File.read(exec_path, 2) == '#!' then
|
||||
|
@ -466,7 +466,7 @@ TEXT
|
|||
|
||||
say results.join("\n") if Gem.configuration.really_verbose
|
||||
|
||||
rescue => ex
|
||||
rescue
|
||||
results = results.join "\n"
|
||||
|
||||
File.open('gem_make.out', 'wb') { |f| f.puts results }
|
||||
|
|
|
@ -143,7 +143,7 @@ class Gem::OldFormat
|
|||
end
|
||||
yield [entry, Zlib::Inflate.inflate(file_data.strip.unpack("m")[0])]
|
||||
end
|
||||
rescue Zlib::DataError => e
|
||||
rescue Zlib::DataError
|
||||
raise Gem::Exception, errstr
|
||||
end
|
||||
end
|
||||
|
|
|
@ -82,7 +82,7 @@ class Gem::Uninstaller
|
|||
gem_names = list.collect {|gem| gem.full_name} + ["All versions"]
|
||||
|
||||
say
|
||||
gem_name, index = choose_from_list "Select gem to uninstall:", gem_names
|
||||
_, index = choose_from_list "Select gem to uninstall:", gem_names
|
||||
|
||||
if index == list.size then
|
||||
remove_all list.dup
|
||||
|
|
Загрузка…
Ссылка в новой задаче