Class: Gotta::Run::Ruby::Runner
- Inherits:
-
DynamicRunner
- Object
- DynamicRunner
- Gotta::Run::Ruby::Runner
- Defined in:
- lib/gotta/run/ruby/runner.rb
Instance Method Summary collapse
-
#initialize(input_queue: Gotta::Queue.new('input')) ⇒ Runner
constructor
A new instance of Runner.
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 |