Not found
The exact documentation you were looking for could not be found. Here is the best guess.
chown(p1, p2)
public
See File.chown. Change owner and group of file.
Show source
static VALUE
path_chown(VALUE self, VALUE owner, VALUE group)
{
return rb_funcall(rb_cFile, rb_intern("chown"), 3, owner, group, get_strpath(self));
}