This repository was archived by the owner on Apr 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2k
[2.0] Remove RubyGems Aggregate & support transitive source pinning #4714
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
435655a
Remove the notion of a rubygems aggregate
segiddins c98e4fb
Progress on not re-resolving with new split sources
segiddins 051e069
Fix back deps with pinned sources
segiddins ca01935
Failing spec for #3671.
TimMoore 16e5354
[Resolver] Pin transitive deps to relevant sources
segiddins 2f7659a
[LockfileParser] Keep duplicate path sources
segiddins 7d1218b
[Resolver] Strip ruby platform from more error messages
segiddins 6cde9e2
[StubSpecification] Fix StackOverflow on #to_yaml
segiddins 994abbc
Use new source_requirements format for indexes helper
segiddins 55c39a0
Update specs for removal of global path source support
segiddins 0832d88
Update lockfile specs for re-ordering
segiddins 4062694
Update specs for improved resolver source errors
segiddins 7645e54
Update downloader spec for URL in 404 error message
segiddins e22ef4d
Fix the SourceList specs
segiddins 142eab4
[DSL] Error when using a path source without a block
segiddins 2503b55
[Resolver] Remove dead code
segiddins a30d330
Add specs for pulling transitive deps from monorepos
segiddins 0f45721
[Definition] Remove confusing memoize proc
segiddins 9ed30e9
Ensure all installations succeed in the resolving spec
segiddins fe9ca08
Add failing test for invalid warning
60810bc
Dont add rake to repo1
segiddins baa7112
Fix specs checking for rake source
segiddins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're sure this still works with
gem "foo", path: "bar", right?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, it does what git does and uses and empty block to fetch the source when used as an option: https://github.com/bundler/bundler/blob/4327cfe160f45f1bb0f02b9ea8b7e006ec255e02/lib/bundler/dsl.rb#L343
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍