diff options
author | Bundlerbot <bot@bundler.io> | 2019-08-27 06:49:23 +0000 |
---|---|---|
committer | Bundlerbot <bot@bundler.io> | 2019-08-27 06:49:23 +0000 |
commit | b3e1177d4b64cc154b85a3b70bf0b7acd44d98bc (patch) | |
tree | 2a2ce7cca2ce4fea33c41385f0c31a203859face /lib/bundler/cli/outdated.rb | |
parent | 31414dd7768d6492b5174a349cbf0ab5c12c9989 (diff) | |
parent | b5766564fb6ad9c74c3b87ad6b2965f3b9095d08 (diff) | |
download | bundler-b3e1177d4b64cc154b85a3b70bf0b7acd44d98bc.tar.gz |
Merge #7329
7329: Undo auto multiplatform r=deivid-rodriguez a=deivid-rodriguez
### What was the end-user problem that led to this PR?
The problem was that since #7215, more Gemfiles are going to fail resolution because of the current issues with multiplatform support, and that we'll be pushing current multiplatform problems into all users because bundler will resolve and lock all platforms included on a Gemfile by default.
### What was your diagnosis of the problem?
My diagnosis was that we probably need better multiplatform support before we start resolving all platforms by default.
### What is your fix for the problem, implemented in this PR?
My fix is to revert the relevant commits from #7215. I'll try to revisit in the future.
### Why did you choose this fix out of the possible options?
I chose this fix because it goes back to how things were before.
Closes #7315.
Co-authored-by: David RodrÃguez <deivid.rodriguez@riseup.net>
Diffstat (limited to 'lib/bundler/cli/outdated.rb')
-rw-r--r-- | lib/bundler/cli/outdated.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/bundler/cli/outdated.rb b/lib/bundler/cli/outdated.rb index 5c8cd26d88..0b710e9782 100644 --- a/lib/bundler/cli/outdated.rb +++ b/lib/bundler/cli/outdated.rb @@ -169,8 +169,6 @@ module Bundler end def retrieve_active_spec(definition, current_spec) - return unless current_spec.match_platform(Bundler.local_platform) - if strict active_spec = definition.find_resolved_spec(current_spec) else |