Class: FileSystemWrapper

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

Overview

Ceedling - Test-Centered Build System for C
ThrowTheSwitch.org
Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
SPDX-License-Identifier: MIT

Instance Method Summary collapse

Instance Method Details

#cd(path) ⇒ Object



10
11
12
13
14
# File 'lib/ceedling/file_system_wrapper.rb', line 10

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