Sha256: 2811a4a5b208e91df1b142c679e05313d8d7d2ab7839eed6934ee09bd37f2ec8
Contents?: true
Size: 419 Bytes
Versions: 80
Compression:
Stored size: 419 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module Support module Shellout module_function def shell(command = nil, stdin_data: nil, mask_secrets: nil, stream_output: false, &block) Support::ShellCommand.new( command, stdin_data: stdin_data, mask_secrets: mask_secrets, stream_output: stream_output).execute!(&block) end end end end end
Version data entries
80 entries across 80 versions & 1 rubygems