Method: Path#lchmod

Defined in:
lib/path/file.rb

#lchmod(mode) ⇒ Object

Changes permissions of path, not following symlink. See File.lchmod.



26
27
28
# File 'lib/path/file.rb', line 26

def lchmod(mode)
  File.lchmod(mode, @path)
end