1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/pathname/pathname.c (Init_pathname): fix number of arguments for

Pathname#chown.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-08-07 00:32:20 +00:00
parent 6bc65b35bd
commit d1893fe74d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat Aug 7 09:31:48 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (Init_pathname): fix number of arguments for
Pathname#chown.
Sat Aug 7 09:28:12 2010 Tanaka Akira <akr@fsij.org>
* test/ruby/envutil.rb (assert_normal_exit): use assert. fix

View file

@ -491,5 +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);
rb_define_method(rb_cPathname, "chown", path_chown, 2);
}