class Rufus::Scheduler::SchedulerCore

def running_jobs


triggered and are executing).
Returns the list of the currently running jobs (jobs that just got
def running_jobs
  Thread.list.collect { |t|
    t["rufus_scheduler__trigger_thread__#{self.object_id}"]
  }.compact
end