summaryrefslogtreecommitdiff
path: root/ext/pathname
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-10 21:54:24 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-10 21:54:24 +0000
commit0f070a1f4bb6227cb0a18b1e6dab6e5f972a1c9b (patch)
tree311adc28fa00054065055f3392dde85b2f249689 /ext/pathname
parent1a8a6580e9dab1267187e592f182ada8a39a0747 (diff)
* ext/pathname/pathname.c (path_symlink_p): Pathname#symlink?
translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29220 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 4f3b5b9d6c..985451e8ae 100644
--- a/ext/pathname/lib/pathname.rb
+++ b/ext/pathname/lib/pathname.rb
@@ -486,9 +486,6 @@ end
class Pathname # * FileTest *
- # See <tt>FileTest.symlink?</tt>.
- def symlink?() FileTest.symlink?(@path) end
-
# See <tt>FileTest.writable?</tt>.
def writable?() FileTest.writable?(@path) end
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c
index ff3588c7f3..14b745c164 100644
--- a/ext/pathname/pathname.c
+++ b/ext/pathname/pathname.c
@@ -769,6 +769,15 @@ path_sticky_p(VALUE self)
}
/*
+ * See <tt>FileTest.symlink?</tt>.
+ */
+static VALUE
+path_symlink_p(VALUE self)
+{
+ return rb_funcall(rb_mFileTest, rb_intern("symlink?"), 1, get_strpath(self));
+}
+
+/*
* == Pathname
*
* Pathname represents a pathname which locates a file in a filesystem.
@@ -1016,4 +1025,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "size", path_size, 0);
rb_define_method(rb_cPathname, "size?", path_size_p, 0);
rb_define_method(rb_cPathname, "sticky?", path_sticky_p, 0);
+ rb_define_method(rb_cPathname, "symlink?", path_symlink_p, 0);
}