summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-04-30 09:41:26 -0700
committerAndre Arko <andre@arko.net>2015-04-30 09:41:49 -0700
commit70aed516410c801c17a5f506106802b9b1bd2534 (patch)
treedec24e66dd5c1171f655c0093d5af21fb518351c
parent481d1d7377f1f8fbee060456f8599ea129804b35 (diff)
downloadbundler-70aed516410c801c17a5f506106802b9b1bd2534.tar.gz
Fix shadowed variable warning
-rw-r--r--lib/bundler/definition.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb
index 86dbfba2a5..70e2efda55 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,