module RocketJob module Jobs class SimpleJob < RocketJob::Job # No operation, used for performance testing def perform sleep 1 end end end end