├── .gitignore ├── .travis.yml ├── CHANGES.md ├── Cakefile ├── LICENSE.md ├── README.md ├── docs └── .gitkeep ├── index.coffee ├── package.json ├── src ├── hook.coffee ├── patterns.coffee ├── script.coffee └── version.coffee └── test ├── hook_test.coffee ├── index_test.coffee ├── mocha.opts ├── pattern_test.coffee ├── test_apps.json └── test_helper.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/index.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/package.json -------------------------------------------------------------------------------- /src/hook.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/src/hook.coffee -------------------------------------------------------------------------------- /src/patterns.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/src/patterns.coffee -------------------------------------------------------------------------------- /src/script.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/src/script.coffee -------------------------------------------------------------------------------- /src/version.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/src/version.coffee -------------------------------------------------------------------------------- /test/hook_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/test/hook_test.coffee -------------------------------------------------------------------------------- /test/index_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/test/index_test.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/pattern_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/test/pattern_test.coffee -------------------------------------------------------------------------------- /test/test_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/test/test_apps.json -------------------------------------------------------------------------------- /test/test_helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atmos/hubot-auto-deploy/HEAD/test/test_helper.coffee --------------------------------------------------------------------------------