This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
chown(uid, gid)
public
No documentation available.
# File lib/bundler/vendor/fileutils/lib/fileutils.rb, line 1245
def chown(uid, gid)
if symlink?
File.lchown uid, gid, path() if have_lchown?
else
File.chown uid, gid, path()
end
end