├── .gitignore ├── LICENSE.txt ├── README.md ├── config.yml ├── events ├── forecast.coffee ├── giphy.coffee └── say.coffee ├── heartbot.png ├── heartbot └── index.coffee ├── index.coffee ├── interactions.md ├── lib └── common.coffee └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/config.yml -------------------------------------------------------------------------------- /events/forecast.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/events/forecast.coffee -------------------------------------------------------------------------------- /events/giphy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/events/giphy.coffee -------------------------------------------------------------------------------- /events/say.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/events/say.coffee -------------------------------------------------------------------------------- /heartbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/heartbot.png -------------------------------------------------------------------------------- /heartbot/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/heartbot/index.coffee -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/index.coffee -------------------------------------------------------------------------------- /interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/interactions.md -------------------------------------------------------------------------------- /lib/common.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/lib/common.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalocean/heartbot/HEAD/package.json --------------------------------------------------------------------------------