├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── lib └── cron-cluster.js ├── package.json └── test ├── cron-cluster-compatibilty-check.js └── cron-cluster.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGLOO-be/cron-cluster/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGLOO-be/cron-cluster/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/cron-cluster') 2 | -------------------------------------------------------------------------------- /lib/cron-cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGLOO-be/cron-cluster/HEAD/lib/cron-cluster.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGLOO-be/cron-cluster/HEAD/package.json -------------------------------------------------------------------------------- /test/cron-cluster-compatibilty-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGLOO-be/cron-cluster/HEAD/test/cron-cluster-compatibilty-check.js -------------------------------------------------------------------------------- /test/cron-cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGLOO-be/cron-cluster/HEAD/test/cron-cluster.js --------------------------------------------------------------------------------