-
Notifications
You must be signed in to change notification settings - Fork 123
Add workaround for Gem::Package::TarWriter#add_file
#378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
d622ed7 to
cd82928
Compare
|
@unasuke How is the progress on this patch? Since next ruby minor or major version will be released soon (probably 2025/12/2x), I hope we can merge it before then. |
|
@sue445 Sorry, I forgot it. I'll revise it. |
089230f to
2f45e69
Compare
From rubygems v3.6.7, `Gem::Package::TarWriter#add_file` uses `SOURCE_DATE_EPOCH` env var to set file mtime. This is a workaround for Docker backend where `Gem::Package::TarWriter#add_file` used in Docker backend. See also: * ruby/rubygems#8673 * #377 * #378
2f45e69 to
42d9220
Compare
Gem::Package::TarWriter#add_file
sue445
left a comment
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.
This reverts commit 3a5a55b.
|
@sue445 ALL GREEN 💚 |
sue445
left a comment
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.
thx!
What
From rubygems v3.6.7,
Gem::Package::TarWriter#add_fileusesSOURCE_DATE_EPOCHenv var to set file mtime.This is a workaround for Docker backend where
Gem::Package::TarWriter#add_fileused in Docker backend.See also: