balbi (Feliple Balbi)
- Login: balbi
- Email: balbif@gmail.com
- Registered on: 02/19/2013
- Last sign in: 02/19/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/19/2013
-
02:44 AM Ruby Bug #7879 (Rejected): File.readable? fails when ruby runs as root
- I have the following script to find sysfs (linux) files which are readable but throw an exception when read:
Dir.glob("/sys/**/*").each do |file|
next if File.directory?(file)
if File.world_writable?(file)
...