├── .gitignore ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json └── src ├── index.coffee └── scripts └── ansible.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/scripts/ansible.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vspiewak/hubot-ansible/HEAD/src/scripts/ansible.coffee --------------------------------------------------------------------------------