andrenth (Andre Nathan)
- Login: andrenth
- Email: andrenth@gmail.com
- Registered on: 07/07/2010
- Last sign in: 09/23/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/23/2013
-
08:39 PM Ruby Feature #8077: Returning Dir objects from C extensions
- Any chance of this going ahead?
03/13/2013
-
03:06 AM Ruby Feature #8077: Returning Dir objects from C extensions
- The code I'm working with is wrapping the fdopendir(3) function (return a DIR* from a file descriptor). This is currently not possible except in ruby 1.8.
03/12/2013
-
03:11 AM Ruby Feature #8077 (Feedback): Returning Dir objects from C extensions
- In 1.8 it was possible to return Dir objects from C extensions by mimicking the code in dir.c and using Data_Wrap_Struct(rb_cDir, dir_mark, dir_free, dirp). This doesn't work in 1.9+, so it would be nice to have the Dir methods exposed t...
03/11/2013
-
10:21 PM Ruby Feature #8050: struct stat to VALUE should be accessable from the C-API
- Can we also have a way to create a Dir object from a DIR pointer? Something like rb_dir_new(DIR *dir).