1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated

from pathname.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-09-07 21:26:33 +00:00
parent 8e3c2ced73
commit c37ec5c9d2
3 changed files with 15 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Wed Sep 8 06:25:41 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated
from pathname.rb.
Tue Sep 7 21:03:35 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_readable_real_p):

View file

@ -486,9 +486,6 @@ end
class Pathname # * FileTest *
# See <tt>FileTest.setuid?</tt>.
def setuid?() FileTest.setuid?(@path) end
# See <tt>FileTest.setgid?</tt>.
def setgid?() FileTest.setgid?(@path) end

View file

@ -723,6 +723,15 @@ path_readable_real_p(VALUE self)
return rb_funcall(rb_mFileTest, rb_intern("readable_real?"), 1, get_strpath(self));
}
/*
* See <tt>FileTest.setuid?</tt>.
*/
static VALUE
path_setuid_p(VALUE self)
{
return rb_funcall(rb_mFileTest, rb_intern("setuid?"), 1, get_strpath(self));
}
/*
* == Pathname
*
@ -966,4 +975,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "readable?", path_readable_p, 0);
rb_define_method(rb_cPathname, "world_readable?", path_world_readable_p, 0);
rb_define_method(rb_cPathname, "readable_real?", path_readable_real_p, 0);
rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0);
}