├── .gitignore ├── Procfile ├── README.md ├── bin ├── hubot └── hubot.cmd ├── external-scripts.json ├── hubot-scripts.json ├── package.json └── scripts ├── events.coffee ├── ganbaruzoi.coffee ├── help.coffee ├── httpd.coffee ├── lgtm.coffee ├── lovelivegif.coffee ├── maki.coffee ├── makigif.coffee ├── misawa.coffee ├── ping.coffee ├── roles.coffee ├── storage.coffee └── tiqav.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store* -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/hubot --adapter slack -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/README.md -------------------------------------------------------------------------------- /bin/hubot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/bin/hubot -------------------------------------------------------------------------------- /bin/hubot.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | npm install && node_modules\.bin\hubot.cmd %* -------------------------------------------------------------------------------- /external-scripts.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /hubot-scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/hubot-scripts.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/events.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/events.coffee -------------------------------------------------------------------------------- /scripts/ganbaruzoi.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/ganbaruzoi.coffee -------------------------------------------------------------------------------- /scripts/help.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/help.coffee -------------------------------------------------------------------------------- /scripts/httpd.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/httpd.coffee -------------------------------------------------------------------------------- /scripts/lgtm.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/lgtm.coffee -------------------------------------------------------------------------------- /scripts/lovelivegif.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/lovelivegif.coffee -------------------------------------------------------------------------------- /scripts/maki.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/maki.coffee -------------------------------------------------------------------------------- /scripts/makigif.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/makigif.coffee -------------------------------------------------------------------------------- /scripts/misawa.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/misawa.coffee -------------------------------------------------------------------------------- /scripts/ping.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/ping.coffee -------------------------------------------------------------------------------- /scripts/roles.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/roles.coffee -------------------------------------------------------------------------------- /scripts/storage.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/storage.coffee -------------------------------------------------------------------------------- /scripts/tiqav.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanographix/makibot/HEAD/scripts/tiqav.coffee --------------------------------------------------------------------------------