summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-07 12:04:17 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-07 12:04:17 +0000
commitb9f2ea847e0004e41dae591816e5a16f06437bba (patch)
treedfccfe59a9a80dfd546de82c3480eae95bb384ed /ext
parent746f85beb448078ff915cb0aa8f1b05954ef3991 (diff)
* ext/pathname/pathname.c (path_readable_real_p):
Pathname#readable_real? translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-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 d3b1354db7..44b50297b7 100644
--- a/ext/pathname/lib/pathname.rb
+++ b/ext/pathname/lib/pathname.rb
@@ -486,9 +486,6 @@ end
class Pathname # * FileTest *
- # See <tt>FileTest.readable_real?</tt>.
- def readable_real?() FileTest.readable_real?(@path) end
-
# See <tt>FileTest.setuid?</tt>.
def setuid?() FileTest.setuid?(@path) end
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c
index 8950504497..d4eea84faf 100644
--- a/ext/pathname/pathname.c
+++ b/ext/pathname/pathname.c
@@ -715,6 +715,15 @@ path_world_readable_p(VALUE self)
}
/*
+ * See <tt>FileTest.readable_real?</tt>.
+ */
+static VALUE
+path_readable_real_p(VALUE self)
+{
+ return rb_funcall(rb_mFileTest, rb_intern("readable_real?"), 1, get_strpath(self));
+}
+
+/*
* == Pathname
*
* Pathname represents a pathname which locates a file in a filesystem.
@@ -956,4 +965,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "owned?", path_owned_p, 0);
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);
}