class CodeKindly::Utils::Shell
Public Class Methods
run(command)
click to toggle source
# File lib/code_kindly/utils/shell.rb, line 9 def run(command) deprecate :'Shell.run', :'Command.run', :'0.1.0' require 'open3' command = command.join(' ') if command.is_a?(Array) Open3.capture3 command end