In my Rails app on Heroku, I want to execute a simple block of code at 5 specific times in the future (each about a day apart), down to the second.
Is there a good way to do this without a background process?
I don't want to use Delayed Job because it'll require a Worker instance that costs ~$30/month. Seems unnecessary.
Is there a GOOD way to do this without Delayed Job / a Heroku Worker?
Resolved
Thanks for your answers- looks like there isn't a solid way to accomplish this. Going with Delayed Job.