ruby-changes:17235
From: akr <ko1@a...>
Date: Mon, 13 Sep 2010 06:54:58 +0900 (JST)
Subject: [ruby-changes:17235] Ruby:r29235 (trunk): * ext/pathname/pathname.c (path_writable_real_p):
akr 2010-09-13 06:46:04 +0900 (Mon, 13 Sep 2010) New Revision: 29235 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29235 Log: * ext/pathname/pathname.c (path_writable_real_p): Pathname#writable_real? translated from pathname.rb. Modified files: trunk/ChangeLog trunk/ext/pathname/lib/pathname.rb trunk/ext/pathname/pathname.c Index: ChangeLog =================================================================== --- ChangeLog (revision 29234) +++ ChangeLog (revision 29235) @@ -1,3 +1,8 @@ +Mon Sep 13 06:45:24 2010 Tanaka Akira <akr@f...> + + * ext/pathname/pathname.c (path_writable_real_p): + Pathname#writable_real? translated from pathname.rb. + Sun Sep 12 21:21:50 2010 Tadayoshi Funaba <tadf@d...> * lib/date.rb: [ruby-core:32096] Thanks Colin Bartlett. Index: ext/pathname/lib/pathname.rb =================================================================== --- ext/pathname/lib/pathname.rb (revision 29234) +++ ext/pathname/lib/pathname.rb (revision 29235) @@ -486,9 +486,6 @@ class Pathname # * FileTest * - # See <tt>FileTest.writable_real?</tt>. - def writable_real?() FileTest.writable_real?(@path) end - # See <tt>FileTest.zero?</tt>. def zero?() FileTest.zero?(@path) end end Index: ext/pathname/pathname.c =================================================================== --- ext/pathname/pathname.c (revision 29234) +++ ext/pathname/pathname.c (revision 29235) @@ -796,6 +796,15 @@ } /* + * See <tt>FileTest.writable_real?</tt>. + */ +static VALUE +path_writable_real_p(VALUE self) +{ + return rb_funcall(rb_mFileTest, rb_intern("writable_real?"), 1, get_strpath(self)); +} + +/* * == Pathname * * Pathname represents a pathname which locates a file in a filesystem. @@ -1046,4 +1055,5 @@ rb_define_method(rb_cPathname, "symlink?", path_symlink_p, 0); rb_define_method(rb_cPathname, "writable?", path_writable_p, 0); rb_define_method(rb_cPathname, "world_writable?", path_world_writable_p, 0); + rb_define_method(rb_cPathname, "writable_real?", path_writable_real_p, 0); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/