gabuscus (Gabriel Nagy)
- Login: gabuscus
- Registered on: 07/31/2019
- Last sign in: 10/02/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/16/2021
-
11:33 PM Ruby Bug #12551 (Closed): Exception accessing file with long path on windows
- Applied in changeset commit:git|229cb0fcdb7957b19d7042b000d803ae58cc6593.
----------
[Win32] long path name support [Bug #12551]
Implement long path support on Windows by applying Microsoft's
recommended application manifest.
To make ... -
11:33 PM Ruby Revision 229cb0fc (git): [Win32] long path name support [Bug #12551]
- Implement long path support on Windows by applying Microsoft's
recommended application manifest.
To make this work on both Visual C++ and MinGW, include the manifest as
a resource when generating the resource files. This way it will be
...
05/15/2021
-
09:00 PM Ruby Bug #12551: Exception accessing file with long path on windows
- Almost! :D Thank you for the makefile improvements.
This took me way longer than expected but I finally have it working: https://github.com/ruby/ruby/pull/4505 -
09:43 AM Ruby Bug #12551: Exception accessing file with long path on windows
- I changed it to match the example from Microsoft:
``` xml
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3...
05/14/2021
-
08:03 PM Ruby Bug #12551: Exception accessing file with long path on windows
- Hello,
I managed to compile Ruby with Visual C++ and long paths support by using an application manifest. I validated some basic things like executing a script from a really long path, and creating a directory with path over 255 chara...
11/21/2020
-
11:41 AM Ruby Feature #16233: winruby UTF8 Fallback for no CodePage
- duerst (Martin Dürst) wrote in #note-6:
> Just adding an alias 'CP720' for windows-1256 is much easier.
Hi @duerst, sorry for digging this up. I read your comment and updated my original pull request to alias CP720 to windows-1256:...
07/21/2020
-
12:17 AM Ruby Revision a8eeccea (git): [ruby/csv] Bump minimum ruby version to 2.5.0 (#159)
- A dependency to stringio was added to csv, which requires Ruby version
>= 2.5. Bump the gemspec version accordingly.
https://github.com/ruby/csv/commit/bc5a26029f
10/11/2019
-
04:48 AM Ruby Revision ddfb306e (git): win32.c: Remove unused calls to StartSockets (#2312)
- NtSocketsInitialized behavior changed in e33b1690, requiring
a call to rb_w32_sysinit for starting Windows Sockets.
This commit removes NtSocketsInitialized entirely to avoid confusion.
Signed-off-by: Gabriel Nagy <gabriel.nagy@puppet....
10/04/2019
-
11:06 AM Ruby Feature #16233: winruby UTF8 Fallback for no CodePage
- duerst (Martin Dürst) wrote:
> If codepage 720 is not supported, then we should look at supporting it.
fair point, however investigation on this Puppet ticket: https://tickets.puppetlabs.com/browse/PA-2191 concluded that falling back...
10/03/2019
-
07:29 AM Ruby Feature #16233 (Closed): winruby UTF8 Fallback for no CodePage
- This is to deal specifically with setting the Region to Arabic which
sets the codepage to 720. This codepage isn't recognised by Ruby which
causes it to fail during initialisation when setting up LOCALE.
This patch to Ruby is necess...