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

ruby-changes:17219

From: akr <ko1@a...>
Date: Fri, 10 Sep 2010 23:16:35 +0900 (JST)
Subject: [ruby-changes:17219] Ruby:r29219 (trunk): * ext/pathname/pathname.c (path_sticky_p): Pathname#sticky? translated

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

  New Revision: 29219

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

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

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

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 29218)
+++ ChangeLog	(revision 29219)
@@ -1,3 +1,8 @@
+Fri Sep 10 23:03:43 2010  Tanaka Akira  <akr@f...>
+
+	* ext/pathname/pathname.c (path_sticky_p): Pathname#sticky? translated
+	  from pathname.rb.
+
 Fri Sep 10 19:11:13 2010  NAKAMURA, Hiroshi  <nahi@r...>
 
 	* lib/webrick/httprequest.rb (WEBrick::HTTPRequest#continue): add
Index: ext/pathname/lib/pathname.rb
===================================================================
--- ext/pathname/lib/pathname.rb	(revision 29218)
+++ ext/pathname/lib/pathname.rb	(revision 29219)
@@ -486,9 +486,6 @@
 
 class Pathname    # * FileTest *
 
-  # See <tt>FileTest.sticky?</tt>.
-  def sticky?() FileTest.sticky?(@path) end
-
   # See <tt>FileTest.symlink?</tt>.
   def symlink?() FileTest.symlink?(@path) end
 
Index: ext/pathname/pathname.c
===================================================================
--- ext/pathname/pathname.c	(revision 29218)
+++ ext/pathname/pathname.c	(revision 29219)
@@ -760,6 +760,15 @@
 }
 
 /*
+ * See <tt>FileTest.sticky?</tt>.
+ */
+static VALUE
+path_sticky_p(VALUE self)
+{
+    return rb_funcall(rb_mFileTest, rb_intern("sticky?"), 1, get_strpath(self));
+}
+
+/*
  * == Pathname
  *
  * Pathname represents a pathname which locates a file in a filesystem.
@@ -1006,4 +1015,5 @@
     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);
+    rb_define_method(rb_cPathname, "sticky?", path_sticky_p, 0);
 }

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

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