├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── hubot.png ├── keymaps └── hubot.json ├── lib ├── hubot-view.js └── hubot.js ├── logs └── .gitkeep ├── menus └── hubot.json ├── octocat.png ├── package.json ├── play.coffee ├── scripts └── default.coffee ├── spec ├── hubot-spec.js └── hubot-view-spec.js ├── styles └── hubot.less └── test └── test.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/README.md -------------------------------------------------------------------------------- /hubot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/hubot.png -------------------------------------------------------------------------------- /keymaps/hubot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/keymaps/hubot.json -------------------------------------------------------------------------------- /lib/hubot-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/lib/hubot-view.js -------------------------------------------------------------------------------- /lib/hubot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/lib/hubot.js -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/logs/.gitkeep -------------------------------------------------------------------------------- /menus/hubot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/menus/hubot.json -------------------------------------------------------------------------------- /octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/octocat.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/package.json -------------------------------------------------------------------------------- /play.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/play.coffee -------------------------------------------------------------------------------- /scripts/default.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/scripts/default.coffee -------------------------------------------------------------------------------- /spec/hubot-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/spec/hubot-spec.js -------------------------------------------------------------------------------- /spec/hubot-view-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/spec/hubot-view-spec.js -------------------------------------------------------------------------------- /styles/hubot.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/styles/hubot.less -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saraford/atom-hubot/HEAD/test/test.coffee --------------------------------------------------------------------------------