Method: Path#chown
- Defined in:
- lib/path/file.rb
#chown(owner, group) ⇒ Object
Changes the owner and group of path. See File.chown.
31 32 33 |
# File 'lib/path/file.rb', line 31 def chown(owner, group) File.chown(owner, group, @path) end |