* ext/pathname/pathname.c (path_setgid_p): Pathname#setgid? translated
from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29196 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b684424176
commit
bafa881327
@ -1,3 +1,8 @@
|
|||||||
|
Wed Sep 8 20:56:57 2010 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* ext/pathname/pathname.c (path_setgid_p): Pathname#setgid? translated
|
||||||
|
from pathname.rb.
|
||||||
|
|
||||||
Wed Sep 8 06:25:41 2010 Tanaka Akira <akr@fsij.org>
|
Wed Sep 8 06:25:41 2010 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated
|
* ext/pathname/pathname.c (path_setuid_p): Pathname#setuid? translated
|
||||||
|
@ -486,9 +486,6 @@ end
|
|||||||
|
|
||||||
class Pathname # * FileTest *
|
class Pathname # * FileTest *
|
||||||
|
|
||||||
# See <tt>FileTest.setgid?</tt>.
|
|
||||||
def setgid?() FileTest.setgid?(@path) end
|
|
||||||
|
|
||||||
# See <tt>FileTest.size</tt>.
|
# See <tt>FileTest.size</tt>.
|
||||||
def size() FileTest.size(@path) end
|
def size() FileTest.size(@path) end
|
||||||
|
|
||||||
|
@ -732,6 +732,15 @@ path_setuid_p(VALUE self)
|
|||||||
return rb_funcall(rb_mFileTest, rb_intern("setuid?"), 1, get_strpath(self));
|
return rb_funcall(rb_mFileTest, rb_intern("setuid?"), 1, get_strpath(self));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* See <tt>FileTest.setgid?</tt>.
|
||||||
|
*/
|
||||||
|
static VALUE
|
||||||
|
path_setgid_p(VALUE self)
|
||||||
|
{
|
||||||
|
return rb_funcall(rb_mFileTest, rb_intern("setgid?"), 1, get_strpath(self));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* == Pathname
|
* == Pathname
|
||||||
*
|
*
|
||||||
@ -976,4 +985,5 @@ Init_pathname()
|
|||||||
rb_define_method(rb_cPathname, "world_readable?", path_world_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, "readable_real?", path_readable_real_p, 0);
|
||||||
rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0);
|
rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0);
|
||||||
|
rb_define_method(rb_cPathname, "setgid?", path_setgid_p, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user