anykeyh (Yacine PETITPREZ)
- Login: anykeyh
- Email: anykeyh@gmail.com
- Registered on: 12/15/2015
- Last sign in: 05/04/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/04/2025
-
01:17 PM Ruby Misc #21290: Unable to build ruby extension on Fedora 42 due to possible GCC 15 issues
- I confirm I have the same problem on arch. With multiple ruby version (3.2, 3.3, 3.4). Example of gems failing are `jaro_winkler` or `ruby-prof`.
Is there any way to fix without touching gem code? Some kind of system flag to set?
12/15/2015
-
05:39 AM Ruby Bug #11819 (Rejected): URI::encode issue with the "+" character
`URI.encode("a+b")` returns "a+b". Mostly all web servers transform the "+" in URI parameters to space, and can create issue with base64 encoded parameters for example.
Currently we must write this:
`args = URI.encode(args).gsub...