Class: CompassIntegrator::CommandTemplate

Inherits:
Object
  • Object
show all
Defined in:
lib/compass_integrator/command_template.rb

Instance Method Summary collapse

Constructor Details

#initialize(config:, output: $stdout, executor: ::Kernel) ⇒ CommandTemplate

Returns a new instance of CommandTemplate.



22
23
24
25
26
# File 'lib/compass_integrator/command_template.rb', line 22

def initialize(config:, output: $stdout, executor: ::Kernel)
  @config = config
  @output = output
  @executor = executor
end

Instance Method Details

#runObject

Raises:

  • (NotImplementedError)


28
29
30
# File 'lib/compass_integrator/command_template.rb', line 28

def run
  raise NotImplementedError
end