http://beouk.blogspot.ca/2012/02/keeping-heroku-awake.html
That is the tutorial I tried to follow, but it doesn't seem to work. Here's what I did:
Add Heroku scheduler and add a job called "call_page" which runs hourly.
Created a file called 'scheduler.rake' in app/lib/tasks
Code in the file says:
desc "This task is called by the Heroku cron add-on" task :call_page => :environment do uri = URI.parse('http://www.WEBSITE.com/') Net::HTTP.get(uri) end
But it's still not working. For website name, I'm using my registered domain name, and not the heroku subdomain. Could that be the problem? Thanks!