module XCTasks::Command
Public Class Methods
run(command, echo = true)
click to toggle source
# File lib/xctasks/test_task.rb, line 8 def run(command, echo = true) puts "Executing `#{command}`" if echo system(command) end
Private Instance Methods
run(command, echo = true)
click to toggle source
# File lib/xctasks/test_task.rb, line 8 def run(command, echo = true) puts "Executing `#{command}`" if echo system(command) end