├── .gitignore ├── LICENSE ├── README.md ├── index.coffee ├── package.json └── src └── sentimental.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-sentimental/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-sentimental/HEAD/README.md -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-sentimental/HEAD/index.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-sentimental/HEAD/package.json -------------------------------------------------------------------------------- /src/sentimental.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-sentimental/HEAD/src/sentimental.coffee --------------------------------------------------------------------------------