class Rufus::Scheduler

def find_schedulables (tag)


result.
Jobs that haven't a wrapped Schedulable won't be included in the
the wrapped Schedulable objects.
Finds the jobs with the given tag and then returns an array of
def find_schedulables (tag)
  find_jobs(tag).find_all { |job| job.respond_to?(:schedulable) }
end