Skip to content

Instantly share code, notes, and snippets.

@stevenabrooks
Created January 14, 2014 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevenabrooks/8426447 to your computer and use it in GitHub Desktop.
Save stevenabrooks/8426447 to your computer and use it in GitHub Desktop.
rake task for heroku
desc "Pings PING_URL to keep a dyno alive"
task :dyno_ping do
require "net/http"
uri = URI("YOUR SITE")
response = Net::HTTP.get_response(uri)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment