class FileSystemWrapper

Public Instance Methods

cd(path) { || ... } click to toggle source
# File lib/ceedling/file_system_wrapper.rb, line 4
def cd(path)
  FileUtils.cd path do
    yield
  end
end