Sha256: 9ff7760ec9859609cc5603c00d2071bcfb1a6200c522972b9c371e345e81afde
Contents?: true
Size: 362 Bytes
Versions: 51
Compression:
Stored size: 362 Bytes
Contents
module Kurchatov module Mixin module Command def shell_out(cmd) mix = ::Mixlib::ShellOut.new(cmd) mix.run_command mix end def shell_out!(cmd) mix = shell_out(cmd) mix.error! mix end def shell(cmd) mix = shell_out!(cmd) mix.stdout end end end end
Version data entries
51 entries across 51 versions & 1 rubygems