├── .gitignore ├── LICENSE ├── README.md ├── index.coffee ├── package.json └── src └── reviewer-lotto.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .idea/ 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakatam/hubot-reviewer-lotto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakatam/hubot-reviewer-lotto/HEAD/README.md -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakatam/hubot-reviewer-lotto/HEAD/index.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakatam/hubot-reviewer-lotto/HEAD/package.json -------------------------------------------------------------------------------- /src/reviewer-lotto.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakatam/hubot-reviewer-lotto/HEAD/src/reviewer-lotto.coffee --------------------------------------------------------------------------------