From b8adf336a670fa84e4d8c9b1f74be225c199b561 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 29 Aug 2010 22:33:09 +0000 Subject: * ext/pathname/pathname.c (path_.executable_p): Pathname#.executable? translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/pathname/pathname.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ext/pathname/pathname.c') diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index ef18de7cd6..e8e3a42147 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -615,6 +615,15 @@ path_chardev_p(VALUE self) return rb_funcall(rb_mFileTest, rb_intern("chardev?"), 1, get_strpath(self)); } +/* + * See FileTest.executable?. + */ +static VALUE +path_executable_p(VALUE self) +{ + return rb_funcall(rb_mFileTest, rb_intern("executable?"), 1, get_strpath(self)); +} + /* * == Pathname * @@ -846,4 +855,5 @@ Init_pathname() rb_define_method(rb_cPathname, "split", path_split, 0); rb_define_method(rb_cPathname, "blockdev?", path_blockdev_p, 0); rb_define_method(rb_cPathname, "chardev?", path_chardev_p, 0); + rb_define_method(rb_cPathname, "executable?", path_executable_p, 0); } -- cgit v1.2.3