Class: FileSystemWrapper

Inherits:
Object show all
Defined in:
lib/ceedling/file_system_wrapper.rb

Instance Method Summary collapse

Instance Method Details

#cd(path) ⇒ Object



4
5
6
7
8
# File 'lib/ceedling/file_system_wrapper.rb', line 4

def cd(path)
  FileUtils.cd path do
    yield
  end
end