From d1a4390eedb54094a883993dc11b2355df9a9a31 Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 9 Aug 2010 07:05:26 +0000 Subject: * lib/rubygems/source_index.rb: rename unused variable. * lib/rubygems/specification.rb: rename unused variable. * lib/rubygems/specification.rb: remove unused variable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rubygems/source_index.rb | 2 +- lib/rubygems/specification.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/rubygems') diff --git a/lib/rubygems/source_index.rb b/lib/rubygems/source_index.rb index f9b8ea0f81..4700fbbb89 100644 --- a/lib/rubygems/source_index.rb +++ b/lib/rubygems/source_index.rb @@ -357,7 +357,7 @@ class Gem::SourceIndex begin fetcher = Gem::SpecFetcher.fetcher remotes = fetcher.find_matching dependency - remotes = remotes.map { |(name, version,_),_| version } + remotes = remotes.map { |(_,version,_),_| version } rescue Gem::RemoteFetcher::FetchError => e raise unless fetcher.warn_legacy e do require 'rubygems/source_info_cache' diff --git a/lib/rubygems/specification.rb b/lib/rubygems/specification.rb index 4c5a02d39c..c9a4a0c640 100644 --- a/lib/rubygems/specification.rb +++ b/lib/rubygems/specification.rb @@ -671,7 +671,7 @@ class Gem::Specification private :same_attributes? def hash # :nodoc: - @@attributes.inject(0) { |hash_code, (name, default_value)| + @@attributes.inject(0) { |hash_code, (name, _)| n = self.send(name).hash hash_code + n } @@ -703,7 +703,7 @@ class Gem::Specification def to_yaml(opts = {}) # :nodoc: return super if YAML.const_defined?(:ENGINE) && !YAML::ENGINE.syck? - yaml = YAML.quick_emit object_id, opts do |out| + YAML.quick_emit object_id, opts do |out| out.map taguri, to_yaml_style do |map| encode_with map end -- cgit v1.2.3