summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-10-24 13:11:26 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-10-24 13:11:26 -0500
commit107e3db440b1b54086f07fbd856066bc0ea441bd (patch)
tree9d885efebd62658ca5053b3e3729ff2198d8e89d
parentdcd679520328a83ab69b6b8b23ceef4fdafc5a3b (diff)
downloadbundler-seg-molinillo-0.5.2.tar.gz
[DepProxy] Handle comparing against nilseg-molinillo-0.5.2
-rw-r--r--lib/bundler/dep_proxy.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/dep_proxy.rb b/lib/bundler/dep_proxy.rb
index 998975bbaf..343d59faac 100644
--- a/lib/bundler/dep_proxy.rb
+++ b/lib/bundler/dep_proxy.rb
@@ -13,6 +13,7 @@ module Bundler
end
def ==(other)
+ return unless other
dep == other.dep && __platform == other.__platform
end