class Rufus::Scheduler

def get_schedulable (job_id)


schedulable if any.
Finds a job (via get_job()) and then returns the wrapped
def get_schedulable (job_id)
  j = get_job(job_id)
  j.respond_to?(:schedulable) ? j.schedulable : nil
end