-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4110 from rubygems/compact_index_api
Respect `required_ruby_version` and `required_rubygems_version` constraints when looking for `gem install` candidates (cherry picked from commit c533e9f)
- Loading branch information
1 parent
6bf888a
commit 6b5d465
Showing
26 changed files
with
382 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
module Bundler | ||
class CompactIndexClient | ||
if defined?(Gem::Resolver::APISet::GemParser) | ||
GemParser = Gem::Resolver::APISet::GemParser | ||
else | ||
class GemParser | ||
def parse(line) | ||
version_and_platform, rest = line.split(" ", 2) | ||
version, platform = version_and_platform.split("-", 2) | ||
dependencies, requirements = rest.split("|", 2).map {|s| s.split(",") } if rest | ||
dependencies = dependencies ? dependencies.map {|d| parse_dependency(d) } : [] | ||
requirements = requirements ? requirements.map {|d| parse_dependency(d) } : [] | ||
[version, platform, dependencies, requirements] | ||
end | ||
|
||
private | ||
|
||
def parse_dependency(string) | ||
dependency = string.split(":") | ||
dependency[-1] = dependency[-1].split("&") if dependency.size > 1 | ||
dependency | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# frozen_string_literal: true | ||
|
||
class Gem::Resolver::APISet::GemParser | ||
def parse(line) | ||
version_and_platform, rest = line.split(" ", 2) | ||
version, platform = version_and_platform.split("-", 2) | ||
dependencies, requirements = rest.split("|", 2).map {|s| s.split(",") } if rest | ||
dependencies = dependencies ? dependencies.map {|d| parse_dependency(d) } : [] | ||
requirements = requirements ? requirements.map {|d| parse_dependency(d) } : [] | ||
[version, platform, dependencies, requirements] | ||
end | ||
|
||
private | ||
|
||
def parse_dependency(string) | ||
dependency = string.split(":") | ||
dependency[-1] = dependency[-1].split("&") if dependency.size > 1 | ||
dependency | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.