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:
parent
6bc65b35bd
commit
d1893fe74d
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue