Class: SpaceshipMissionSimulator::Simulate

Inherits:
Object
  • Object
show all
Includes:
Interactor
Defined in:
lib/spaceship_mission_simulator/interactors/simulate.rb

Instance Method Summary collapse

Instance Method Details

#callObject



16
17
18
19
20
21
22
23
24
# File 'lib/spaceship_mission_simulator/interactors/simulate.rb', line 16

def call
  context.result = build_new_result

  simulate_events_from_last_one do |prev_event|
    add_path_event prev_event
    validate_added_event!
    sum_total_fuel_weight prev_event
  end
end