Land #7485, lib/rex/post/gen.pl removal

bug/bundler_fix
William Vu 2016-10-24 09:56:41 -05:00
commit ba3830c100
No known key found for this signature in database
GPG Key ID: 68BD00CE25866743
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#!/usr/bin/perl
use strict;
foreach my $f ('atime', 'blockdev?', 'chardev?', 'ctime', 'directory?',
'executable?', 'executable_real?', 'file?', 'ftype', 'grpowned?',
'mtime', 'owned?', 'pipe?', 'readable?', 'readable_real?', 'setuid?',
'setgid?', 'size', 'socket?', 'sticky?', 'symlink?', 'writeable?',
'writeable_real?', 'zero?') {
my $t = "\t";
print "${t}def File.$f(name)\n\t${t}stat(name).$f\n${t}end\n";
}