Class: DepthFirst::SerialOrganizer
- Defined in:
- lib/depth_first/serial_organizer.rb
Overview
Base serial organizer class
Constant Summary collapse
- TASKS =
[].freeze
Instance Attribute Summary
Attributes inherited from Task
Instance Method Summary collapse
Methods inherited from Task
Constructor Details
This class inherits a constructor from DepthFirst::Task
Instance Method Details
#perform ⇒ Object
6 7 8 9 10 |
# File 'lib/depth_first/serial_organizer.rb', line 6 def perform tasks.reduce() do |hsh, task| hsh.merge(task.new(hsh).perform) end end |