alexalexgriffith (Alex Griffith)
- Login: alexalexgriffith
- Registered on: 09/10/2025
- Last sign in: 10/01/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/01/2025
-
02:51 PM Ruby Bug #21568: Requiring core libraries when already requiring multiple user defined libraries with the same name can error
- Updated to indicate this is reproducible on the latest ruby version as well as on Debian Linux.
09/10/2025
-
02:49 PM Ruby Bug #21568 (Closed): Requiring core libraries when already requiring multiple user defined libraries with the same name can error
- The simplest way to understand this error is that after requiring 2 or more files with the same name as some core libraries, any subsequent calls to require the core library will fail, ie
```ruby
require 'foo/fiber'
require 'bar/fiber...