Module: XCTasks::Command
- Defined in:
- lib/xctasks/test_task.rb
Class Method Summary collapse
Class Method Details
.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 |