Module: XCTasks::Command

Defined in:
lib/xctasks/test_task.rb

Class Method Summary collapse

Class Method Details

.run(command, echo = true) ⇒ Object



8
9
10
11
# File 'lib/xctasks/test_task.rb', line 8

def run(command, echo = true)
  puts "Executing `#{command}`" if echo
  system(command)
end