From 26b924768c62b68972bc4826dd97511a5cfa6914 Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Thu, 30 Apr 2015 09:41:26 -0700 Subject: Fix shadowed variable warning --- lib/bundler/definition.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb index 86dbfba2..70e2efda 100644 --- a/lib/bundler/definition.rb +++ b/lib/bundler/definition.rb @@ -521,7 +521,7 @@ module Bundler converged = [] @locked_specs.each do |s| # Replace the locked dependency's source with the equivalent source from the Gemfile - dep = @dependencies.find { |dep| s.satisfies?(dep) } + dep = @dependencies.find { |d| s.satisfies?(d) } s.source = (dep && dep.source) || sources.get(s.source) # Don't add a spec to the list if its source is expired. For example, -- cgit v1.2.3