Sha256: 92eebef69b4950bde563378abad4b74abbfc150e524e48838ba5fb49d9454fc5
Contents?: true
Size: 300 Bytes
Versions: 5
Compression:
Stored size: 300 Bytes
Contents
module Methadone module ExecutionStrategy # Implementation for modern Rubies that uses the built-in Open3 library class Open_3 < MRI def run_command(command) stdout,stderr,status = Open3.capture3(command) [stdout.chomp,stderr.chomp,status] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems