Class: Dip::Commands::Runners::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/dip/commands/runners/base.rb

Direct Known Subclasses

DockerComposeRunner, KubectlRunner, LocalRunner

Instance Method Summary collapse

Constructor Details

#initialize(command, argv, **options) ⇒ Base

Returns a new instance of Base.



7
8
9
10
11
# File 'lib/dip/commands/runners/base.rb', line 7

def initialize(command, argv, **options)
  @command = command
  @argv = argv
  @options = options
end

Instance Method Details

#executeObject

Raises:

  • (NotImplementedError)


13
14
15
# File 'lib/dip/commands/runners/base.rb', line 13

def execute
  raise NotImplementedError
end