ruby-changes:17148
From: akr <ko1@a...>
Date: Mon, 30 Aug 2010 21:30:23 +0900 (JST)
Subject: [ruby-changes:17148] Ruby:r29147 (trunk): * ext/pathname/pathname.c (path_executable_real_p):
akr 2010-08-30 21:30:14 +0900 (Mon, 30 Aug 2010) New Revision: 29147 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29147 Log: * ext/pathname/pathname.c (path_executable_real_p): Pathname#executable_real? translated from pathname.rb. Modified files: trunk/ChangeLog trunk/ext/pathname/lib/pathname.rb trunk/ext/pathname/pathname.c Index: ChangeLog =================================================================== --- ChangeLog (revision 29146) +++ ChangeLog (revision 29147) @@ -1,3 +1,8 @@ +Mon Aug 30 21:29:21 2010 Tanaka Akira <akr@f...> + + * ext/pathname/pathname.c (path_executable_real_p): + Pathname#executable_real? translated from pathname.rb. + Mon Aug 30 15:00:13 2010 NARUSE, Yui <naruse@r...> * string.c (tr_setup_table): initialize negating table when @@ -10,7 +15,7 @@ Mon Aug 30 07:32:41 2010 Tanaka Akira <akr@f...> - * ext/pathname/pathname.c (path_.executable_p): Pathname#.executable? + * ext/pathname/pathname.c (path_executable_p): Pathname#executable? translated from pathname.rb. Sun Aug 29 23:54:10 2010 Nobuyoshi Nakada <nobu@r...> Index: ext/pathname/lib/pathname.rb =================================================================== --- ext/pathname/lib/pathname.rb (revision 29146) +++ ext/pathname/lib/pathname.rb (revision 29147) @@ -486,9 +486,6 @@ class Pathname # * FileTest * - # See <tt>FileTest.executable_real?</tt>. - def executable_real?() FileTest.executable_real?(@path) end - # See <tt>FileTest.exist?</tt>. def exist?() FileTest.exist?(@path) end Index: ext/pathname/pathname.c =================================================================== --- ext/pathname/pathname.c (revision 29146) +++ ext/pathname/pathname.c (revision 29147) @@ -625,6 +625,15 @@ } /* + * See <tt>FileTest.executable_real?</tt>. + */ +static VALUE +path_executable_real_p(VALUE self) +{ + return rb_funcall(rb_mFileTest, rb_intern("executable_real?"), 1, get_strpath(self)); +} + +/* * == Pathname * * Pathname represents a pathname which locates a file in a filesystem. @@ -856,4 +865,5 @@ rb_define_method(rb_cPathname, "blockdev?", path_blockdev_p, 0); rb_define_method(rb_cPathname, "chardev?", path_chardev_p, 0); rb_define_method(rb_cPathname, "executable?", path_executable_p, 0); + rb_define_method(rb_cPathname, "executable_real?", path_executable_real_p, 0); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/