├── .gitignore ├── Cakefile ├── README.md ├── bin └── deploy-robot ├── config.json.sample ├── package.json └── src ├── adapter └── github.coffee └── robot.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/.gitignore -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/Cakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/README.md -------------------------------------------------------------------------------- /bin/deploy-robot: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../build/robot'); 4 | -------------------------------------------------------------------------------- /config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/config.json.sample -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/package.json -------------------------------------------------------------------------------- /src/adapter/github.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/src/adapter/github.coffee -------------------------------------------------------------------------------- /src/robot.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentfault/deploy-robot/HEAD/src/robot.coffee --------------------------------------------------------------------------------