Sha256: 1006e6bd37e9ecea04a8802f6e8c134dbb0b7f26d4b97847497e202e41f3206c
Contents?: true
Size: 389 Bytes
Versions: 14
Compression:
Stored size: 389 Bytes
Contents
require 'open4' module Lino class CommandLine def initialize command_line @command_line = command_line end def execute( stdin: '', stdout: STDOUT, stderr: STDERR) Open4::spawn( @command_line, stdin: stdin, stdout: stdout, stderr: stderr) end def to_s @command_line end end end
Version data entries
14 entries across 14 versions & 1 rubygems