Method: Path#lchown

Defined in:
lib/path/file.rb

#lchown(owner, group) ⇒ Object

Changes the owner and group of path, not following symlink. See File.lchown.



37
38
39
# File 'lib/path/file.rb', line 37

def lchown(owner, group)
  File.lchown(owner, group, @path)
end