Method: XCTasks::Command.run
- Defined in:
- lib/xctasks/test_task.rb
.run(command, echo = true) ⇒ Object
7 8 9 10 |
# File 'lib/xctasks/test_task.rb', line 7 def run(command, echo = true) puts "Executing `#{command}`" if echo system(command) end |