From dc2676a8a06b2126f7a5abbab9ebbd1f9b4726ce Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 5 Aug 2010 20:53:56 +0000 Subject: [PATCH] * ext/pathname/pathname.c (path_mtime): Pathname#mtime translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28879 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/pathname/lib/pathname.rb | 3 --- ext/pathname/pathname.c | 10 ++++++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 712b7ba1ea..12b939f142 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 6 05:53:32 2010 Tanaka Akira + + * ext/pathname/pathname.c (path_mtime): Pathname#mtime translated from + pathname.rb. + Thu Aug 5 22:09:30 2010 Tanaka Akira * ext/pathname/pathname.c (path_ctime): Pathname#ctime translated from diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 907ee1157a..73aaed57f3 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -512,9 +512,6 @@ end class Pathname # * File * - # See File.mtime. Returns last modification time. - def mtime() File.mtime(@path) end - # See File.chmod. Changes permissions. def chmod(mode) File.chmod(mode, @path) end diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index e0963eacea..a0a209422a 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -250,6 +250,15 @@ path_ctime(VALUE self) return rb_funcall(rb_cFile, rb_intern("ctime"), 1, get_strpath(self)); } +/* + * See File.mtime. Returns last modification time. + */ +static VALUE +path_mtime(VALUE self) +{ + return rb_funcall(rb_cFile, rb_intern("mtime"), 1, get_strpath(self)); +} + /* * == Pathname * @@ -452,4 +461,5 @@ Init_pathname() rb_define_method(rb_cPathname, "realdirpath", path_realdirpath, -1); rb_define_method(rb_cPathname, "atime", path_atime, 0); rb_define_method(rb_cPathname, "ctime", path_ctime, 0); + rb_define_method(rb_cPathname, "mtime", path_mtime, 0); }