Method: Gitlab::QA::Docker::Shellout#initialize
- Defined in:
- lib/gitlab/qa/docker/shellout.rb
#initialize(command) ⇒ Shellout
Returns a new instance of Shellout.
9 10 11 12 13 14 |
# File 'lib/gitlab/qa/docker/shellout.rb', line 9 def initialize(command) @command = command @output = [] puts "Docker shell command: `#{@command}`" end |