OptparsePlus Internal - treat as private

Implementation for modern Rubies that uses the built-in Open3 library

Methods
R
Instance Public methods
run_command(command)
# File lib/optparse_plus/execution_strategy/open_3.rb, line 7
def run_command(command)
  stdout,stderr,status = case command
                         when String then Open3.capture3(command)
                         else Open3.capture3(*command)
                         end
  [stdout.chomp,stderr.chomp,status]
end