├── .DS_Store ├── .gitignore ├── .jshint ├── .travis.yml ├── API.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── app.js ├── app.json ├── images └── duel.gif ├── index.html ├── lib ├── api.js ├── app.js ├── hal.js ├── player_middleware.js ├── pong.js ├── routes.js └── url.js ├── models ├── Challenge.js └── Player.js ├── npm-shrinkwrap.json ├── package.json └── test ├── api_test.js ├── models └── Player_tests.js ├── player_middleware_tests.js ├── pong_tests.js ├── routes_test.js └── shared.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.jshint: -------------------------------------------------------------------------------- 1 | { 2 | "expr" : true 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/.travis.yml -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/API.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/app.json -------------------------------------------------------------------------------- /images/duel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/images/duel.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/index.html -------------------------------------------------------------------------------- /lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/api.js -------------------------------------------------------------------------------- /lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/app.js -------------------------------------------------------------------------------- /lib/hal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/hal.js -------------------------------------------------------------------------------- /lib/player_middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/player_middleware.js -------------------------------------------------------------------------------- /lib/pong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/pong.js -------------------------------------------------------------------------------- /lib/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/routes.js -------------------------------------------------------------------------------- /lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/lib/url.js -------------------------------------------------------------------------------- /models/Challenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/models/Challenge.js -------------------------------------------------------------------------------- /models/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/models/Player.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/package.json -------------------------------------------------------------------------------- /test/api_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/test/api_test.js -------------------------------------------------------------------------------- /test/models/Player_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/test/models/Player_tests.js -------------------------------------------------------------------------------- /test/player_middleware_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/test/player_middleware_tests.js -------------------------------------------------------------------------------- /test/pong_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/test/pong_tests.js -------------------------------------------------------------------------------- /test/routes_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/test/routes_test.js -------------------------------------------------------------------------------- /test/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewvy/slack-pongbot/HEAD/test/shared.js --------------------------------------------------------------------------------