Method: Executor#execute_interactive

Defined in:
lib/exogenesis/support/executor.rb

#execute_interactive(description, script) ⇒ Object

Executes the script via system, so the user can interact with the output. Instead of the usual output of the other commands, it will draw a border around the interactive section



115
116
117
118
119
# File 'lib/exogenesis/support/executor.rb', line 115

def execute_interactive(description, script)
  @output.start_border description
  system script
  @output.end_border
end