├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── cmd.js └── usage.txt ├── lib ├── build.js ├── client.js ├── config.default.js ├── gcr.js ├── runner.js └── utils.js ├── package.json └── test ├── fixtures └── server.js ├── gcr.js └── home ├── .gitempty └── .ssh ├── .gitempty ├── gcr └── gcr.pub /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | test/home/.config 3 | .nyc_output 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /bin/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/bin/usage.txt -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/config.default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/lib/config.default.js -------------------------------------------------------------------------------- /lib/gcr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/lib/gcr.js -------------------------------------------------------------------------------- /lib/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/lib/runner.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/test/fixtures/server.js -------------------------------------------------------------------------------- /test/gcr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/test/gcr.js -------------------------------------------------------------------------------- /test/home/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/home/.ssh/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/home/.ssh/gcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/test/home/.ssh/gcr -------------------------------------------------------------------------------- /test/home/.ssh/gcr.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/gcr/HEAD/test/home/.ssh/gcr.pub --------------------------------------------------------------------------------