├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── circle.yml ├── package.json ├── src ├── circleci-request.coffee ├── circleci-response.coffee ├── circleci.coffee └── routes.json └── tests ├── helpers └── api-helper.coffee ├── integration ├── cancel-build-spec.coffee ├── clear-build-cache.coffee ├── delete-env-var-spec.coffee ├── get-branch-builds-spec.coffee ├── get-build-artifacts-spec.coffee ├── get-build-spec.coffee ├── get-builds-spec.coffee ├── get-env-var-spec.coffee ├── get-env-vars-spec.coffee ├── get-projects-spec.coffee ├── get-recent-builds-spec.coffee ├── get-test-metadata-spec.coffee ├── get-user-spec.coffee ├── retry-build-spec.coffee ├── set-env-var-spec.coffee └── start-build-spec.coffee └── unit ├── circleci-request-spec.coffee └── circleci-spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | /.env 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | src 3 | node_modules 4 | tests 5 | Gruntfile.js 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/package.json -------------------------------------------------------------------------------- /src/circleci-request.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/src/circleci-request.coffee -------------------------------------------------------------------------------- /src/circleci-response.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/src/circleci-response.coffee -------------------------------------------------------------------------------- /src/circleci.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/src/circleci.coffee -------------------------------------------------------------------------------- /src/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/src/routes.json -------------------------------------------------------------------------------- /tests/helpers/api-helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/helpers/api-helper.coffee -------------------------------------------------------------------------------- /tests/integration/cancel-build-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/cancel-build-spec.coffee -------------------------------------------------------------------------------- /tests/integration/clear-build-cache.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/clear-build-cache.coffee -------------------------------------------------------------------------------- /tests/integration/delete-env-var-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/delete-env-var-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-branch-builds-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-branch-builds-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-build-artifacts-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-build-artifacts-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-build-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-build-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-builds-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-builds-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-env-var-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-env-var-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-env-vars-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-env-vars-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-projects-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-projects-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-recent-builds-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-recent-builds-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-test-metadata-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-test-metadata-spec.coffee -------------------------------------------------------------------------------- /tests/integration/get-user-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/get-user-spec.coffee -------------------------------------------------------------------------------- /tests/integration/retry-build-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/retry-build-spec.coffee -------------------------------------------------------------------------------- /tests/integration/set-env-var-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/set-env-var-spec.coffee -------------------------------------------------------------------------------- /tests/integration/start-build-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/integration/start-build-spec.coffee -------------------------------------------------------------------------------- /tests/unit/circleci-request-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/unit/circleci-request-spec.coffee -------------------------------------------------------------------------------- /tests/unit/circleci-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpstevens/circleci/HEAD/tests/unit/circleci-spec.coffee --------------------------------------------------------------------------------