I'm working on a rails app that uses resque and resque-scheduler to schedule email sending.
Is there a way to get a list of all the scheduled jobs, or even better a list of jobs that have a specific argument?
I've tried a few things like Resque.schedule
but the best I can get is this hash:
{"send_email"=>
{
"class"=>"EmailSendingJob",
"args"=>nil,
"queue"=>"email_queue",
"description"=>"Runs the perform method in EmailSendingJob"
}
}