From c4c4bff456a6f0eb28de0b1e6f6d7bfe4d3e5291 Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 6 Aug 2010 12:30:28 +0000 Subject: * ext/pathname/pathname.c (path_chmod): Pathname#chmod translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28888 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 01a0d0ee9a..dbcc4fdc54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 6 21:30:06 2010 Tanaka Akira + + * ext/pathname/pathname.c (path_chmod): Pathname#chmod translated from + pathname.rb. + Fri Aug 6 20:13:42 2010 Nobuyoshi Nakada * rational.c (nurat_div): divided by infinity should be zero. diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 73aaed57f3..1f83275911 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -512,9 +512,6 @@ end class Pathname # * File * - # See File.chmod. Changes permissions. - def chmod(mode) File.chmod(mode, @path) end - # See File.lchmod. def lchmod(mode) File.lchmod(mode, @path) end diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index a0a209422a..1fae923380 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -259,6 +259,15 @@ path_mtime(VALUE self) return rb_funcall(rb_cFile, rb_intern("mtime"), 1, get_strpath(self)); } +/* + * See File.chmod. Changes permissions. + */ +static VALUE +path_chmod(VALUE self, VALUE mode) +{ + return rb_funcall(rb_cFile, rb_intern("chmod"), 2, mode, get_strpath(self)); +} + /* * == Pathname * @@ -462,4 +471,5 @@ Init_pathname() 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); + rb_define_method(rb_cPathname, "chmod", path_chmod, 1); } -- cgit v1.2.3