├── .travis.yml ├── Makefile ├── README.md ├── example ├── dog.js └── event_emitter.js ├── index.js ├── lib └── gently │ ├── gently.js │ └── index.js ├── package.json └── test ├── common.js └── simple └── test-gently.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/README.md -------------------------------------------------------------------------------- /example/dog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/example/dog.js -------------------------------------------------------------------------------- /example/event_emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/example/event_emitter.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/gently'); -------------------------------------------------------------------------------- /lib/gently/gently.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/lib/gently/gently.js -------------------------------------------------------------------------------- /lib/gently/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./gently'); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/package.json -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/test/common.js -------------------------------------------------------------------------------- /test/simple/test-gently.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-gently/HEAD/test/simple/test-gently.js --------------------------------------------------------------------------------