segiddins (Samuel Giddins)
- Login: segiddins
- Email: [email protected]
- Registered on: 05/12/2015
- Last sign in: 12/11/2024
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 2 | 7 | 9 |
Activity
06/13/2025
-
03:55 AM Ruby Revision 73532ecf (git): [rubygems/rubygems] Update bundled tls certs
- By running tool/update_bundled_ca_certificates.rb
Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/54f5278450
06/10/2025
-
11:48 PM Ruby Revision 7e3d271f (git): [rubygems/rubygems] Install the best matching gem for the current platform in gem install
- Instead of picking essentially a random matching platform
Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/3727096297
06/06/2025
-
01:22 AM Ruby Revision c0a1e877 (git): Move most of Bundler::GemHelpers to Gem::Platform
- This will help centralize wheel platform selection logic eventually
Signed-off-by: Samuel Giddins <[email protected]>
05/26/2025
-
02:46 AM Ruby Revision c9ba3d0b (git): [rubygems/rubygems] Bump required_ruby_version to 3.2
- Ruby 3.1 was EOL March 2025
Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/29c21b1e78 -
02:46 AM Ruby Revision af276886 (git): [rubygems/rubygems] Remove reference to validate_rust_builder_rubygems_version
- Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/f8baf13ab0 -
02:46 AM Ruby Revision d8d0da57 (git): [rubygems/rubygems] Remove platform backports from bundler
- Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/9336d3811c -
02:46 AM Ruby Revision 485ee6d7 (git): [rubygems/rubygems] Remove backport of LATEST_RUBY_WITHOUT_PATCH_VERSIONS
- Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/24c8073b24
05/19/2025
-
02:15 AM Ruby Revision 8f61e175 (git): [rubygems/rubygems] RuboCop
- Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/768784910b -
02:15 AM Ruby Revision 4be199e4 (git): [rubygems/rubygems] Simplify Gem::Platform#initialize
- Based on PR feedback
Signed-off-by: Samuel Giddins <[email protected]>
https://github.com/rubygems/rubygems/commit/562d7aa087 -
02:15 AM Ruby Revision eb48418b (git): [rubygems/rubygems] Ensure that Gem::Platform parses strings to a fix point
- The issue was that the property that
```ruby
platform = Gem::Platform.new $string
platform == Gem::Platform.new(platform.to_s)
```
was not always true.
This property (of acchieving a fix point) is important,
since `Gem::Platform` gets...