Method: Path#chmod

Defined in:
lib/path/file.rb

#chmod(mode) ⇒ Object

Changes permissions of path. See File.chmod.



21
22
23
# File 'lib/path/file.rb', line 21

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