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:42:03 -0700
commit26b924768c62b68972bc4826dd97511a5cfa6914 (patch)
tree4668fb115b300ba232223ce28f303c367ebd9e5c
parenta9b4aa6cd483236c010053a2ac17b5d221967837 (diff)
downloadbundler-26b924768c62b68972bc4826dd97511a5cfa6914.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,