Method: Path#cp_r

Defined in:
lib/path/fileutils.rb

#cp_r(to) ⇒ Object

Copies the file or directory recursively to the directory to. See FileUtils.cp_r.



52
53
54
# File 'lib/path/fileutils.rb', line 52

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