summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2021-11-17 12:58:07 +0100
committergit <svn-admin@ruby-lang.org>2021-12-03 20:00:49 +0900
commitca65f7bb8afe747628d3d48caf63e5fcba303e29 (patch)
tree020985ff9533b62f31bd138be977500396ebbd78
parentd19c266b49022e6788a4e14be86fef22a73d5871 (diff)
[rubygems/rubygems] Remove unnecessary code
Somehow this is trying to relax frozen mode constraints for path sources. It doesn't make sense to me and it's not covered by any spec so I'm killing it. https://github.com/rubygems/rubygems/commit/17c978e161
-rw-r--r--lib/bundler/definition.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb
index 58612e5c16..9afbdfa07d 100644
--- a/lib/bundler/definition.rb
+++ b/lib/bundler/definition.rb
@@ -379,12 +379,6 @@ module Bundler
new_deps = @dependencies - locked_dependencies
deleted_deps = locked_dependencies - @dependencies
- # Check if it is possible that the source is only changed thing
- if (new_deps.empty? && deleted_deps.empty?) && (!new_sources.empty? && !deleted_sources.empty?)
- new_sources.reject! {|source| source.path? && source.path.exist? }
- deleted_sources.reject! {|source| source.path? && source.path.exist? }
- end
-
if @locked_sources != gemfile_sources
if new_sources.any?
added.concat new_sources.map {|source| "* source: #{source}" }