issyl0 (Issy Long)
- Login: issyl0
- Registered on: 03/18/2025
- Last sign in: 03/18/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
08/25/2026
-
09:55 PM Ruby Revision 9270124f (git): [ruby/rubygems] Delete `Bundler::ParallelInstaller::SpecInstallation#enqueued?`
- - This predicate method has been unused since
https://github.com/ruby/rubygems/commit/7d1131672a84 in 2021 when the
`ready_to_enqueue?` method was simplified.
https://github.com/ruby/rubygems/commit/88d7eef941 -
09:55 PM Ruby Revision 6c28747c (git): [ruby/rubygems] Delete the unused `Bundler::UI::Shell#quiet?` method
- - In https://github.com/ruby/rubygems/commit/304a98301522 in 2013, "quiet?" was any
level that was not "debug", "info", or "warn",
- Its last use was removed in https://github.com/ruby/rubygems/commit/64f1294672e2
in 2014.
- Since ...
08/24/2026
-
12:40 AM Ruby Revision 92bce8ad (git): [ruby/rubygems] Use `delete_prefix` to strip the `subjectAltName` email tag
- - `Gem::Security::Signer#extract_name` matched `/\Aemail:/` then read
the non-matching part of the string out of `$'`.
- Prefer `delete_prefix("email:")` as it's understandable by mortals.
- Consequently get rid of a RuboCop disable ...