Method: Cotta::InMemorySystem#move_dir

Defined in:
lib/cotta/impl/in_memory_system.rb

#move_dir(source, target) ⇒ Object



102
103
104
105
# File 'lib/cotta/impl/in_memory_system.rb', line 102

def move_dir(source, target)
  copy_dir(source, target)
  delete_dir(source)
end