class Physicist::Laboratory::JumpScientistHandler

Public Instance Methods

handle(scientist_id:) click to toggle source
# File lib/physicist/laboratory/handlers/jump_scientist_handler.rb, line 4
def handle(scientist_id:)
  scientist = Scientist.find(scientist_id)
  scientist.jump
end