Sha256: 5ffeeb452ef94ee50b857165d2f988b3ed1ec69e008b441639f6e2ca78ba54e3
Contents?: true
Size: 371 Bytes
Versions: 1
Compression:
Stored size: 371 Bytes
Contents
# frozen_string_literal: true require_relative '../command' module Dru module Commands class DockerCompose < Dru::Command def initialize(options:, command:) @options = options @command = command end def execute(input: $stdin, output: $stdout) run_docker_compose_command(*@command, tty: true) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dru-1.0.0 | lib/dru/commands/docker_compose.rb |