module ViteRuby::IO
def capture(*cmd, with_output: $stdout.method(:puts), stdin_data: '', **opts)
Internal: A modified version of capture3 that can continuosly print stdout.
def capture(*cmd, with_output: $stdout.method(:puts), stdin_data: '', **opts) return Open3.capture3(*cmd, **opts) unless with_output Open3.popen3(*cmd, **opts) { |stdin, stdout, stderr, wait_threads| stdin << stdin_data stdin.close out = Thread.new { read_lines(stdout, &with_output) } err = Thread.new { stderr.read } [out.value, err.value.to_s, wait_threads.value] } end