Project

dynopoker

0.03
No commit activity in last 3 years
No release in over 3 years
Dynopoker is a gem that will make your ruby based heroku app self pinging system, preventing single dyno from falling asleep
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.14.1
~> 1.16.0

Runtime

>= 0
 Project Readme

DynoPoker Build Status

Dynopoker is a gem which prevent your Heroku dyno from falling asleep.

Inspired and sponsored by http://wakemydyno.com

Idea

Dynopoker will command your app to ping itself every 30 minutes.

Installation

Put this line into your Gemfile:

gem 'dynopoker'

Usage

Add this configuration to your config file:

Dynopoker.configure do |config|
	config.address = 'http://wakemydyno.com'
#  config.enable = false # default is true
#  config.poke_frequency = 123 # default is 1800s (30min)
end

TODO

Dynopoker is already doing what it was designed for. No extra features are needed. Code is very simple and well written. I recently added specs but I feel that those specs could be written better. Feel free to contribute.