[前][次][番号順一覧][スレッド一覧]

ruby-changes:17208

From: akr <ko1@a...>
Date: Fri, 10 Sep 2010 07:06:37 +0900 (JST)
Subject: [ruby-changes:17208] Ruby:r29208 (trunk): * ext/pathname/pathname.c (path_size_p): Pathname#size? translated from

akr	2010-09-10 07:04:22 +0900 (Fri, 10 Sep 2010)

  New Revision: 29208

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29208

  Log:
    * ext/pathname/pathname.c (path_size_p): Pathname#size? translated from
      pathname.rb.

  Modified files:
    trunk/ChangeLog
    trunk/ext/pathname/lib/pathname.rb
    trunk/ext/pathname/pathname.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29207)
+++ ChangeLog	(revision 29208)
@@ -1,3 +1,8 @@
+Fri Sep 10 07:03:23 2010  Tanaka Akira  <akr@f...>
+
+	* ext/pathname/pathname.c (path_size_p): Pathname#size? translated from
+	  pathname.rb.
+
 Fri Sep 10 02:15:29 2010  Tanaka Akira  <akr@f...>
 
 	* ext/socket/option.c (inspect_peercred): support OpenBSD-current.
Index: ext/pathname/lib/pathname.rb
===================================================================
--- ext/pathname/lib/pathname.rb	(revision 29207)
+++ ext/pathname/lib/pathname.rb	(revision 29208)
@@ -486,9 +486,6 @@
 
 class Pathname    # * FileTest *
 
-  # See <tt>FileTest.size?</tt>.
-  def size?() FileTest.size?(@path) end
-
   # See <tt>FileTest.sticky?</tt>.
   def sticky?() FileTest.sticky?(@path) end
 
Index: ext/pathname/pathname.c
===================================================================
--- ext/pathname/pathname.c	(revision 29207)
+++ ext/pathname/pathname.c	(revision 29208)
@@ -751,6 +751,15 @@
 }
 
 /*
+ * See <tt>FileTest.size?</tt>.
+ */
+static VALUE
+path_size_p(VALUE self)
+{
+    return rb_funcall(rb_mFileTest, rb_intern("size?"), 1, get_strpath(self));
+}
+
+/*
  * == Pathname
  *
  * Pathname represents a pathname which locates a file in a filesystem.
@@ -996,4 +1005,5 @@
     rb_define_method(rb_cPathname, "setuid?", path_setuid_p, 0);
     rb_define_method(rb_cPathname, "setgid?", path_setgid_p, 0);
     rb_define_method(rb_cPathname, "size", path_size, 0);
+    rb_define_method(rb_cPathname, "size?", path_size_p, 0);
 }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]