summaryrefslogtreecommitdiff
path: root/ext/pathname
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-29 22:33:09 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-29 22:33:09 +0000
commitb8adf336a670fa84e4d8c9b1f74be225c199b561 (patch)
treeaa51320b74cb8a17047b153291a849ad4419d36f /ext/pathname
parentf4b2d14572161896c0b6408b552fb6be3498c995 (diff)
* 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
Diffstat (limited to 'ext/pathname')
-rw-r--r--ext/pathname/lib/pathname.rb3
-rw-r--r--ext/pathname/pathname.c10
2 files changed, 10 insertions, 3 deletions
diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb
index 4615ebc6b1..bc2ce14a54 100644
--- a/ext/pathname/lib/pathname.rb
+++ b/ext/pathname/lib/pathname.rb
@@ -486,9 +486,6 @@ end
class Pathname # * FileTest *
- # See <tt>FileTest.executable?</tt>.
- def executable?() FileTest.executable?(@path) end
-
# See <tt>FileTest.executable_real?</tt>.
def executable_real?() FileTest.executable_real?(@path) end
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
@@ -616,6 +616,15 @@ path_chardev_p(VALUE self)
}
/*
+ * See <tt>FileTest.executable?</tt>.
+ */
+static VALUE
+path_executable_p(VALUE self)
+{
+ return rb_funcall(rb_mFileTest, rb_intern("executable?"), 1, get_strpath(self));
+}
+
+/*
* == Pathname
*
* Pathname represents a pathname which locates a file in a filesystem.
@@ -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);
}