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)
  #return nil unless job_id
  j = get_job(job_id)
  return j.schedulable if j.respond_to?(:schedulable)
  nil
end