summaryrefslogtreecommitdiff
path: root/ext/pathname
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-28 21:34:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-28 21:34:52 +0000
commit2d0cbb3c3a4020eabb65b1d37ed5f5e3abf6bad7 (patch)
tree04ba4576aef424dbd3f50b91538040b25cf45027 /ext/pathname
parenta2bf9203e8b74065eb1452dd13741b3de7305eaf (diff)
* ext/pathname/pathname.c (path_chardev_p): Pathname#chardev?
translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29128 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 f55ec1938a..4615ebc6b1 100644
--- a/ext/pathname/lib/pathname.rb
+++ b/ext/pathname/lib/pathname.rb
@@ -486,9 +486,6 @@ end
class Pathname # * FileTest *
- # See <tt>FileTest.chardev?</tt>.
- def chardev?() FileTest.chardev?(@path) end
-
# See <tt>FileTest.executable?</tt>.
def executable?() FileTest.executable?(@path) end
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c
index 68ff682b2e..ef18de7cd6 100644
--- a/ext/pathname/pathname.c
+++ b/ext/pathname/pathname.c
@@ -607,6 +607,15 @@ path_blockdev_p(VALUE self)
}
/*
+ * See <tt>FileTest.chardev?</tt>.
+ */
+static VALUE
+path_chardev_p(VALUE self)
+{
+ return rb_funcall(rb_mFileTest, rb_intern("chardev?"), 1, get_strpath(self));
+}
+
+/*
* == Pathname
*
* Pathname represents a pathname which locates a file in a filesystem.
@@ -836,4 +845,5 @@ Init_pathname()
rb_define_method(rb_cPathname, "expand_path", path_expand_path, -1);
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);
}