class Gotta::Run::Ruby::Runner

Public Class Methods

new(input_queue: Gotta::Queue.new('input')) click to toggle source
Calls superclass method
# 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