├── .editorconfig ├── .github └── dependabot.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── _src ├── index.coffee ├── lib │ ├── mailbuffer.coffee │ ├── main.coffee │ ├── schemas │ │ ├── create-multi.coffee │ │ ├── create-single.coffee │ │ ├── creator.coffee │ │ ├── message-content.coffee │ │ └── user.coffee │ ├── tasks.coffee │ ├── utils.coffee │ └── worker.coffee └── test │ ├── example.coffee │ └── main.coffee ├── coffeelint.json └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/README.md -------------------------------------------------------------------------------- /_src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/index.coffee -------------------------------------------------------------------------------- /_src/lib/mailbuffer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/mailbuffer.coffee -------------------------------------------------------------------------------- /_src/lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/main.coffee -------------------------------------------------------------------------------- /_src/lib/schemas/create-multi.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/schemas/create-multi.coffee -------------------------------------------------------------------------------- /_src/lib/schemas/create-single.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/schemas/create-single.coffee -------------------------------------------------------------------------------- /_src/lib/schemas/creator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/schemas/creator.coffee -------------------------------------------------------------------------------- /_src/lib/schemas/message-content.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/schemas/message-content.coffee -------------------------------------------------------------------------------- /_src/lib/schemas/user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/schemas/user.coffee -------------------------------------------------------------------------------- /_src/lib/tasks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/tasks.coffee -------------------------------------------------------------------------------- /_src/lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/utils.coffee -------------------------------------------------------------------------------- /_src/lib/worker.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/lib/worker.coffee -------------------------------------------------------------------------------- /_src/test/example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/test/example.coffee -------------------------------------------------------------------------------- /_src/test/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/_src/test/main.coffee -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/coffeelint.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpneuried/redis-notifications/HEAD/package.json --------------------------------------------------------------------------------