| Runner.swift:20 | class func run(command: String, args: String...) -> RunResults { |
| Runner.swift:24 | class func run(command: String, args: [String]) -> RunResults { |
| Runner.swift:29 | class func run(command: String, settings: (RunSettings -> Void)) -> RunResults { |
| Runner.swift:36 | class func run(command: String, args: [String], settings: (RunSettings -> Void)) -> RunResults { |
| Runner.swift:43 | class func run(command: String, echo: EchoSettings) -> RunResults { |
| Runner.swift:49 | class func run(command: String, args: [String], settings: RunSettings) -> RunResults { |
| Runner.swift:53 | let result: RunResults |
| Runner.swift:70 | private class func executeDryCommand(commandParts: [String]) -> RunResults { |
| Runner.swift:74 | private class func executeIneractiveCommand(commandParts: [String]) -> RunResults { |
| Runner.swift:78 | private class func executeActualCommand(commandParts: [String]) -> RunResults { |
| Runner.swift:82 | private class func execute(commandParts: [String], withExecutor executor: TaskExecutor) -> RunResults { |
| Runner.swift:87 | return RunResults(exitStatus: status, stdout: stdout, stderr: stderr) |
| Runner.swift:100 | private class func echoResult(result: RunResults, settings: RunSettings) { |
| ShortHandRunner.swift:19 | public func run(command: String, args: String...) -> RunResults { |
| ShortHandRunner.swift:32 | public func run(command: String, args: [String]) -> RunResults { |
| ShortHandRunner.swift:45 | public func run(command: String, settingsBlock: (RunSettings -> Void)) -> RunResults { |
| ShortHandRunner.swift:59 | public func run(command: String, args: [String], settings: (RunSettings -> Void)) -> RunResults { |
| ShortHandRunner.swift:72 | func run(command: String, echo: EchoSettings) -> RunResults { |