Class: Gotta::Run::Ruby::Runner

Inherits:
DynamicRunner
  • Object
show all
Defined in:
lib/gotta/run/ruby/runner.rb

Instance Method Summary collapse

Constructor Details

#initialize(input_queue: Gotta::Queue.new('input')) ⇒ Runner

Returns a new instance of Runner.



25
26
27
28
29
30
# File 'lib/gotta/run/ruby/runner.rb', line 25

def initialize(input_queue: Gotta::Queue.new('input'))
  super(
    input_queue: input_queue,
    runtime_path: "#{File.expand_path(__dir__)}/child.rb"
  )
end