Method: Path#mv

Defined in:
lib/epath/fileutils.rb

#mv(to) ⇒ Object Also known as: move

Moves self to the to directory.



74
75
76
77
# File 'lib/epath/fileutils.rb', line 74

def mv(to)
  FileUtils.mv(@path, to)
  to
end