From 261bb184c61b8d881a60c39efba3580472bfbc36 Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 6 Aug 2010 23:27:28 +0000 Subject: * ext/pathname/pathname.c (path_chown): Pathname#chown translated from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28891 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 79b41c37cc..0e4275cadf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Aug 7 08:26:26 2010 Tanaka Akira + + * ext/pathname/pathname.c (path_chown): Pathname#chown translated + from pathname.rb. + Sat Aug 7 02:09:04 2010 Tanaka Akira * ext/pathname/pathname.c (path_lchmod): Pathname#lchmod translated diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb index 7e3d453e66..ad51ed70f5 100644 --- a/ext/pathname/lib/pathname.rb +++ b/ext/pathname/lib/pathname.rb @@ -512,9 +512,6 @@ end class Pathname # * File * - # See File.chown. Change owner and group of file. - def chown(owner, group) File.chown(owner, group, @path) end - # See File.lchown. def lchown(owner, group) File.lchown(owner, group, @path) end diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c index 0a3b6771c4..a32c1fdeca 100644 --- a/ext/pathname/pathname.c +++ b/ext/pathname/pathname.c @@ -277,6 +277,15 @@ path_lchmod(VALUE self, VALUE mode) return rb_funcall(rb_cFile, rb_intern("lchmod"), 2, mode, get_strpath(self)); } +/* + * See File.chown. Change owner and group of file. + */ +static VALUE +path_chown(VALUE self, VALUE owner, VALUE group) +{ + return rb_funcall(rb_cFile, rb_intern("chown"), 3, owner, group, get_strpath(self)); +} + /* * == Pathname * @@ -482,4 +491,5 @@ Init_pathname() rb_define_method(rb_cPathname, "mtime", path_mtime, 0); rb_define_method(rb_cPathname, "chmod", path_chmod, 1); rb_define_method(rb_cPathname, "lchmod", path_lchmod, 1); + rb_define_method(rb_cPathname, "chown", path_chown, 1); } -- cgit v1.2.3