Class: Dip::Commands::Runners::Base
- Inherits:
-
Object
- Object
- Dip::Commands::Runners::Base
show all
- Defined in:
- lib/dip/commands/runners/base.rb
Instance Method Summary
collapse
Constructor Details
#initialize(command, argv, **options) ⇒ 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
#execute ⇒ Object
13
14
15
|
# File 'lib/dip/commands/runners/base.rb', line 13
def execute
raise NotImplementedError
end
|