I am using whenever for scheduling in my rails app. I could not find how to run my cronjobs on every tuesday and friday of the week anywhere in the gem's documentation.
This is what I am doing right now is this correct?
every [:tuesday, :friday], at: '12:00am', :roles => [:my_role] do
runner "User.notify"
end