method
chown
v2_6_3 -
Show latest stable
- Class:
Bundler::FileUtils::Entry_
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